Tagged Questions

0
votes
1answer
143 views

Radix Sort Java

Welcome. I have a radix sorting method that uses an array to go through, but has to have another array (bin) that will store in an empty queue. I am confused as to how I would make a queue for the …
0
votes
2answers
162 views

Any ready-made implementation of Radix Sort for C#?

Preferrably with any non-virus open source license
4
votes
2answers
705 views

Radix Sort implemented in C++

UPDATE: I managed to re-work my code from scratch, and here is what I came up with. It works, but the only problem is speed. Is there any way that I can speed up my current set up using better memory …
2
votes
4answers
242 views

Is there a good library for sorting a large array of numbers in C?

If I have a large array of integers or floats, what is a good algorithm/ implementation for sorting (in C)? It is a bit late in the game for an edit... but I am looking for correctness and speed.
40
votes
13answers
2k 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 …
1
vote
4answers
1k views

Java Bit Operations (In Radix Sort)

The other day I decided to write an implementation of radix sort in Java. Radix sort is supposed to be O(k*N) but mine ended up being O(k^2*N) because of the process of breaking down each digit to one …