Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
6k views

How to sort in-place using the merge sort algorithm?

I know the question is not too specific. All I want is someone to tell me how to convert a normal merge sort into an in-place merge sort (or a merge sort with constant extra space overhead). All I ...
5
votes
3answers
148 views

Need perl inplace editing of files not on command line

I have a program that has a number of filenames configured internally. The program edits a bunch of configuration files associated with a database account, then changes the database password for the ...
3
votes
9answers
2k views

Is there an easy way to sort an array of char*'s ? C++

I've got an array of char*'s in a file. The co. I work for stores data in flat files.. Sometimes the data is sorted, but sometimes it's not. I'd like to sort the data in the files. Now I could ...
2
votes
3answers
347 views

Read entire file then print when editing inplace?

Most examples of inplace editing are one-liners that iterate through a file or files, reading and printing one line at a time. I can't find any examples of reading an entire file into an array, ...
2
votes
4answers
2k views

link_to with jquery params in rails

I want to make an in-place search in my rails app. I used button_to_remote with prototype, but now I'm using JQuery, so I changed to link_to. This is my code: <%= link_to "Search", {:action => ...
1
vote
1answer
164 views

Own “in-place activation” OLE Server

I just want to create my own OLE server, which support in-place activation. e.g. In TOlecontrol we can do following: OleContainer1.CreateObject('WORD.Document',FALSE); That is ok. Word document ...
0
votes
0answers
27 views

how to keep item in place in ScrollViewer?

I am using ItemsControl in WPF to display a list of items. New items are added to the list in a background thread. The list is sorted so items can be added at any location. The list is displayed ...
0
votes
1answer
295 views

convert Binary tree to Binary Search Tree inplace using C

Hi Without using any extra space convert Binary Tree to Binary Search tree.I came up with the following algo but It doesn't work. BTtoBST(node *root) 1.if the root is NULL return 2.else ...
0
votes
3answers
197 views

In-Place String Reverse in C

I am trying to learn the fundamentals of C, but I cannot figure out why this code doesn't work. The while loop in reverse() causes a bus error. I found almost identical code in a programming ...
0
votes
3answers
138 views

In place sorting of a string to find out if there are non-unique characters

Recently I came across a problem that asks to find out the non-unique characters in a string without any additional buffer. I interpreted this problem to be an in-place sort of the characters in the ...