Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
737 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
621 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 ...
5
votes
1answer
269 views

Optimizing radix sort in Haskell

I'm still learning Haskell and I wrote following radix sort function. It seems to work correctly, but the problem is that it is rather memory inefficient. If compiled with ghc, the memory goes highly ...
5
votes
2answers
639 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 ...
4
votes
3answers
301 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
365 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
96 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
897 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
744 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
85 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
1answer
269 views

On the efficiency of tries and radix sort

Radix sort's time complexity is O(kn) where n is the number of keys to be sorted and k is the key length. Similarly, the time complexity for the insert, delete, and lookup operations in a trie is ...
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
830 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
27 views

Radix sort implementation for datasets in SAS

In my day-to-day work I'm often working with datasets that contain millions of rows, sometimes 100s of millions, and occasionally over 1 billion. These datasets often need to be sorted. The keys are ...
1
vote
2answers
115 views

Why is my radix sort python implementation slower than quick sort?

I rewrote the original radix sort algorithm for Python from Wikipedia using arrays from SciPy to gain performance and to reduce code length, which I managed to accomplish. Then I took the classic ...
1
vote
1answer
70 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
288 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
130 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
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
1answer
182 views

Radix Sort, the value of r

Please refer to the following code for radix sort: class RadixSort { public static void radix_sort_uint(int[] a, int bits) { int[] b = new int[a.length]; int[] b_orig = b; ...
1
vote
1answer
270 views

Could someone share the benchmarks of Radix sort on GTX 580?

Could someone share the benchmarks of Radix sort on GTX 580?
1
vote
2answers
284 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
1answer
367 views

Which is faster: a “radix tree” or a “b-tree”

For processing language, as in regular dictionary words, which would be faster at reading, a radix tree, or a regular b-tree? Is there a faster method, such as a dictionary with buckets & hashing? ...
1
vote
3answers
294 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
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 ...
0
votes
2answers
91 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
1answer
93 views

Radix-Sort Implementation for Dictionary/KeyValuePair Collection

I'm looking for a fast and efficient Radix-Sort Implementation for Dictionary/KeyValuePair Collection if possible in C# (but not mandatory). The key is an Integer between 1 000 000 and 9 999 999 999. ...
0
votes
0answers
95 views

error: asm operand type size(1) does not match type/size implied by constraint 'r'. On Duane Merrill's GPU radix sort

I have an error when I am trying to compile Merrill's radix sort under win-XP + VS2005. error: asm operand type size(1) does not match type/size implied by constraint 'r'. it occurs in the following ...
0
votes
1answer
291 views

radix sort in c on floating points numbers

Okay so I have to create a radix sort for both unsigned ints and floating point numbers. My unsigned ints version works as it should, I am having a little trouble getting it to work for floating ...
0
votes
1answer
920 views

LSD Radix Sort code in java, question

A am studding for an Exam that I will have about sorting algorithms. And a Friend of mine gave me this code about LSD Radix Sort. And I don't why he is using the numbers 96,97 and 64? I've read a few ...
0
votes
1answer
2k 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
763 views

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

Preferrably with any non-virus open source license