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
755 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
644 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
10k 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
324 views
Radix Sort, Sorting a float data
Is radix sort capable of sorting float data for example 0.5, 0.9, 1.02, etc.?
4
votes
3answers
379 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
4answers
101 views
What constitutes 'array access' in the context of algorithms?
Below is an LSD Radix sort implementation in Java from a textbook to sort an array of strings where each string contains exactly W characters.
I want to count the number of array accesses during ...
3
votes
3answers
981 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 ...
2
votes
2answers
89 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
338 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 ...
1
vote
5answers
92 views
C++ Radix sort algorithm
Trying to understand radix sort for my data structures class. My teacher showed us a sample of radix sort in C++. I don't understand what the for loop for the digits does, she said something about ...
1
vote
1answer
84 views
american flag sort optimization
I am trying to implement American Bucket Sort. Wiki says "first to count the number of objects that will fall in each bin, and second to place each object in its bucket."
In second phase, when ...
1
vote
1answer
350 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
146 views
Is radix sort used for suffix sorting?
I'm trying to implement block sorting. This is from the Burrows Wheeler paper.
(Before this step, you create a V suffix array of S)
Q4. [radix sort]
Sort the elements of V , using the first two ...
1
vote
1answer
160 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
3answers
316 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?
0
votes
2answers
108 views
Radix sort run time
If we have some m>0 and need to provide an algorithm to sort n integers in the range 0 to n^m-1 in time O(mn). My suggestion is :
Radix-Sort(A,t) // t is the digit length
for i=0 to t
do ...
0
votes
2answers
778 views
Any ready-made implementation of Radix Sort for C#?
Preferrably with any non-virus open source license