Tagged Questions
3
votes
4answers
95 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 ...
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
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
1answer
916 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 ...