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 ...
7
votes
7answers
738 views
Sort N numbers in digit order
I found out about this question recently.
Given a N number range Eg. [1 to 100], sort the numbers in digit order (i.e) For the numbers 1 to 100, the sorted output wound be
1 10 100 11 12 13 . . . 19 ...
6
votes
4answers
622 views
Is there a good radixsort-implementation for floats in C#
I have a datastructure with a field of the float-type. A collection of these structures needs to be sorted by the value of the float. Is there a radix-sort implementation for this.
If there isn't, is ...
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 ...
4
votes
3answers
367 views
An array of length N can contain values 1,2,3 … N^2. Is it possible to sort in O(n) time?
Given an array of length N. It can contain values from ranging from 1 to N^2 (N squared) both inclusive, values are integral. Is it possible to sort this array in O(N) time? If possible how?
Edit: ...
3
votes
3answers
898 views
What is the difference between bucket sort and radix sort?
Bucket sort and radix sort are close cousins; bucket sort goes from MSD to LSD, while radix sort can go in both "directions" (LSD or MSD). How do both algorithms work, and in particular how do they ...
3
votes
3answers
745 views
Why quicksort is more popular than radix-sort?
Why quicksort(or introsort), or any comparison-based sorting algorithm is more common than radix-sort? Especially for sorting numbers.
Radix-sort is not comparison based, hence may be faster than ...
2
votes
2answers
86 views
Radix sort not working in Lua
Firstly I should mention I've not been coding very long at all, although that much is probably obvious from my code :P
I'm having two problems, firstly the sort isn't functioning correctly but does ...
2
votes
2answers
316 views
Very basic radix sort
I just wrote a simple iterative radix sort and I'm wondering if I have the right idea.
Recursive implementations seem to be much more common.
I am sorting 4-byte integers (unsigned to keep it ...
2
votes
4answers
831 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.
1
vote
1answer
291 views
How is the complexity of bucket sort is O(n+k) if we implement buckets using linked lists?
I am curious about why bucket sort has a runtime of O(n + k) if we use buckets implemented with linked lists. For example, suppose that we have this input:
n = no of element= 8
k = range = 3
array ...
1
vote
1answer
148 views
left to right radix sort
Radix sort sorts the numbers starting from lease significant digit to most significant digit.
I have the following scenario :
My alphabet is the english alphabet and therefore my "numbers" are ...
1
vote
2answers
286 views
Radix Sort in JavaScript
I've come up with the following but it predictably doesn't work.
var t = new Array(a.length);
var r = 4;
var b = 64;
var count = new Array(1<<r);
var pref = new Array(1<<r);
var groups ...
1
vote
3answers
297 views
When is the appropriate time to use Radix Sort?
What are the constraints on your data for you to be able to use Radix sort?
If I'm sorting a large list of integers, would it be appropriate to use Radix sort? Why is Radix sort not used more?
1
vote
4answers
2k 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 ...
0
votes
2answers
764 views
Any ready-made implementation of Radix Sort for C#?
Preferrably with any non-virus open source license