Tagged Questions
6
votes
2answers
9k 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 ...
5
votes
2answers
638 views
Best way to get individual digits from int for radix sort in C/C++
What is the best way to get individual digits from an int with n number of digits for use in a radix sort algorithm? I'm wondering if there is a particularly good way to do it in C/C++, if not what is ...
0
votes
2answers
52 views
Radix sort with a vector of vectors in C++ crashes
I'm trying to write a radix sort that uses a vector of random numbers and a vector of vectors for the bins.
Here's the code, the error is somewhere in the gather and/or distribute functions - any ...