Use this tag on questions about algorithms that modify the data in-place, as opposed to making a copy. For example, in-place [tag:sorting], in-place [tag:merge], etc.
0
votes
2answers
100 views
Algorithm to apply permutation in constant memory space
I saw this question is an programming interview book, here I'm simplifying the question.
Assume you have an array A of length n, and you have a permutation array P of length n as well. Your method ...
3
votes
1answer
130 views
Sorting in linear time and in place
Suppose that n records have keys in the range from 1 to k.
Write an algorithm to sort the records in place in O(n+k) time.
You may use O(k) storage outside the input array.
Is your algorithm ...
0
votes
2answers
115 views
Detect Non-Mutating Call Statements to Pure Functions in D
I believe D has the potential to add yet another cool feature to its suite of compilers, namely the power to disallow non-side-effect calls to pure functions.
For example
auto s = "a";
toStringz(a);
...
2
votes
1answer
63 views
Determining processing order for (almost) in-place computation
I have an i channel image, image. I also have f filters, filters, that can be applied to a channel. I want to generate an o channel image, output, by selectively applying filters to the channels of ...
1
vote
1answer
113 views
Sorting a file in-place with Shell sort
I have been asked to sort a file in-place using shell sort (and quick sort too, but I think that if I find the way to do one I will be able to do both of them). I have been thinking what could be ...
1
vote
1answer
116 views
CUDA In-place Transpose Error
I'm implementing a CUDA program for transposing an image. I created 2 kernels. The first kernel does out of place transposition and works perfectly for any image size.
Then I created a kernel for ...
0
votes
2answers
175 views
quicksort in place performance (python)
I was asked to write an 'in place' Quicksort version. Created two internal functions - a recursive one and an 'in place sorting' one that chooses random pivot (Question required so), sorts the list in ...
1
vote
2answers
140 views
move from right side to odd positions and from left side to even in-place
Given a non-empty array of items. You have to move all the items from the right side to odd positions (zero-based), and from the left side — to even positions, as follows:
raw data: 0 2 4 6 8 10 12 ...
3
votes
1answer
650 views
Automator: duplicate OR copy in place
I am trying to build the following services:
Change type of image, result in the same folder (image.jpg => image.jpg + image.png)
Change size of image, result in the same folder (image.jpg => ...
5
votes
2answers
828 views
Move all odd positioned element to left half and even positioned to right half in-place
Given an array with positive and negative integers, move all the odd indexed elements to the left and even indexed elements to the right.
The difficult part of the problem is to do it in-place while ...
1
vote
2answers
77 views
c: Style: altering variables in place
Suppose we have something along these lines
int f(int n);
....
do{
int a = b;
int b = f(a);
}
Is there any risk to saying
do{
int b = f(b);
}
instead, assuming a is not used ...
0
votes
0answers
606 views
Parallel In-Place Radix Sort in OpenCL
I was looking for a well optimized opencl implementation of an in-place radix sort. I found one here:
http://code.google.com/p/back40computing/
But i think that it is not in-place.
0
votes
1answer
306 views
javascript sort of HTML elements in-place [closed]
in continuation for javascript sort of HTML elements
I want to sort elements in different <ol>( eventually in <div>)
the sort should preferably be in-place and not to unwrap(),sort() and ...
3
votes
2answers
1k views
Numpy modify array in place?
I have the following code which is attempting to normalize the values of an m x n array (It will be used as input to a neural network, where m is the number of training examples and n is the number of ...
0
votes
1answer
118 views
jquery issue copying data from div to input text
I am working on inplace edit for a form.
I am having two divs one of them holds display elements and the other holds input form.
When you click edit data moves from display div to input form. I see ...
3
votes
2answers
408 views
have I invented a new sorting algorithm? or is this the same as quicksort
I made an algorithm for sorting but I then I thought perhaps I had just reinvented quicksort.
However I heard quicksort is O(N^2) worst case, however I think my algorithm should be only O(NLogN) ...
3
votes
3answers
270 views
merge in-place without external storage
I want to merge two arrays with sorted values into one. Since both source arrays are stored as succeeding parts of a large array, I wonder, if you know a way to merge them into the large storage. ...
3
votes
2answers
7k views
Python Math - TypeError: 'NoneType' object is not subscriptable
I'm making a small program for math (no particular reason, just kind of wanted to) and I ran into the error "TypeError: 'NoneType' object is not subscriptable.
I have never before seen this error, so ...
4
votes
3answers
483 views
Out of memory in Matlab - how to do in-place operation on matrix elements?
I am loading a quite large matrix into Matlab. Loading this matrix already pushes Matlab to its limits - but it fits.
Then I do the following and I get an out-of-memory error.
data( :, 2:2:end, :, ...
4
votes
3answers
374 views
Altering numpy function output array in place
I'm trying to write a function that performs a mathematical operation on an array and returns the result. A simplified example could be:
def original_func(A):
return A[1:] + A[:-1]
For speed-up ...
3
votes
2answers
521 views
In-Place Quicksort in matlab
I wrote a small quicksort implementation in matlab to sort some custom data. Because I am sorting a cell-array and I need the indexes of the sort-order and do not want to restructure the cell-array ...
9
votes
3answers
1k 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 ...
10
votes
2answers
719 views
Why not to allow in-place interface implementation in .NET?
Either I am missing something or .NET doesn't support what Jave does. I'd like to be able to avoid creating a small class just for the sake of implementing a small interface. For example, LINQ's ...
2
votes
2answers
195 views
In place constrution of member variable via constructor
Take the following class:
template <typename TPayload>
class Message
{
public:
Message(const TPayload& payload)
: m_header(sizeof(TPayload)),
...
0
votes
2answers
625 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
2answers
293 views
in-place message in MFC?
Hi
If any one knows how to use in-place warning message in MFC could you share info.
Is there a way to use it or is there any control we can use directly in mfc.
In-Place warning message: A warning ...
0
votes
3answers
625 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 ...
2
votes
1answer
165 views
What in place sort when two arrays are in order?
I am working on this question. My function prototype is
static void Sort(byte[] arr, int leftPos, int rightPos)
In the 2nd part of the function i know leftPos to leftPos + (rightPos-leftPos)/2 and ...
2
votes
4answers
6k 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 => ...
0
votes
3answers
267 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 ...
0
votes
3answers
592 views
Is there an in-place equivalent to 'map' in python?
Possible Duplicate:
Python: map in place
I have a list of strings that I need to sanitize. I have a method for sanitizing them, so I could just do:
new_list = map(Sanitize, old_list)
...
1
vote
1answer
303 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 is ...
3
votes
4answers
2k views
Rotate 2D rectangular array in-place
I have an non-square array like this:
const int dim1 = 3, dim2 = 4;
int array[12] = { 1, 2, 3,
4, 5, 6,
7, 8, 9,
10,11,12};
and I need to ...
5
votes
6answers
4k views
What is an in-place constructor in C++? [duplicate]
Possible Duplicate:
C++'s “placement new”
What is an in-place constructor in C++?
e.g. Datatype *x = new(y) Datatype();
1
vote
1answer
200 views
Keeping only distinct values in tables using Hibernate
I am storing a relatively complex immutable object in a database. There are many many-to-one associations - the object has properties that have properties and so on.
I would like to have each object ...
1
vote
4answers
76 views
In Ruby, if a hash is not going to be needed later, is it better to use hash.merge!({…}) instead of hash.merge({…})?
This happens in Ruby on Rails's View, where there is a hash for another partial. This hash has about 20 key/value pairs.
There is (in HAML)
- if (some_conditon)
= render :partial => ...
3
votes
3answers
169 views
Stable separation for two classes of elements in an array
Consider the following problem.
We are given an array of elements belonging to one two classes: either red or blue. We have to rearrange the elements of the array so that all blue elements come first ...
63
votes
8answers
21k 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 ...
17
votes
6answers
2k views
How to master in-place array modification algorithms?
I am preparing for a software job interview, and I have trouble with in-place array modifications. For example, in the out-shuffle problem you interleave two halves of an array, so that 1 2 3 4 5 6 7 ...
10
votes
4answers
2k views
Python: sort a part of a list, in place
Let's say we have a list:
a = [4, 8, 1, 7, 3, 0, 5, 2, 6, 9]
Now, a.sort() will sort the list in place. What if we want to sort only a part of the list, still in place? In C++ we could write:
int ...
2
votes
2answers
4k views
why is in place merge sort not stable?
The implementation below is stable as it used <= instead of < at line marked XXX. This also makes it more efficient. Is there any reason to use < and not <= at this line?
/**
class for In ...
22
votes
3answers
29k views
Updating a java map entry
I'm facing a problem that seems to have no straighforward solution.
I'm using java.util.Map, and I want to update the value in a Key-Value pair.
Right now, I'm doing it lik this:
private ...
111
votes
17answers
9k views
In-Place Radix Sort
This is a long text. Please bear with me. Boiled down, the question is: Is there a workable in-place radix sort algorithm?
Preliminary
I've got a huge number of small fixed-length strings that ...
3
votes
9answers
4k views
Is there an easy way to sort an array of char*'s ? C++
I've got an array of char* in a file.
The company 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 ...
12
votes
5answers
7k views
What are the best options for Rich Text Editing in Rails?
I'd like to use Rich Text Editing in place on forms in order to let admins change instructions. What are the best options for doing this?
[To be more clear - the admins are non-technical but may ...

