Tagged Questions
The in-place tag has no wiki summary.
80
votes
17answers
6k views
In-Place Radix Sort
This is a long text. Please bear with me. Boiled down, the question is: does someone know a workable in-place radix sort algorithm?
Preliminary
I've got a huge number of small fixed-length strings ...
12
votes
5answers
990 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 ...
8
votes
4answers
606 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 ...
8
votes
3answers
10k 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 ...
7
votes
5answers
5k 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 ...
6
votes
2answers
177 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 ...
4
votes
3answers
75 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, :, ...
3
votes
4answers
1k 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 ...
3
votes
3answers
134 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 ...
2
votes
3answers
60 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 ...
2
votes
2answers
98 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)),
...
2
votes
1answer
89 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
6answers
1k views
What is an in-place constructor in C++? [closed]
Possible Duplicate:
C++'s “placement new”
What is an in-place constructor in C++?
e.g. Datatype *x = new(y) Datatype();
1
vote
0answers
92 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
67 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 => ...
1
vote
2answers
2k 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 ...
0
votes
2answers
141 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
238 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)
...