Tagged Questions
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 ...
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
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 ...