Tagged Questions
3
votes
2answers
126 views
Is radix sort the only non-comparison sorting algorithm?
As the title says, is radix sort the only non-comparison sorting algorithm? My guess is yes.
3
votes
5answers
1k views
How do you calculate floating point in a radix other than 10?
Given Wikipedia's article on Radix Point, how would one calculate the binary equivalent of 10.1 or the hex equivalent of 17.17? For the former, what is the binary equivalent of a tenth? For the ...
1
vote
2answers
72 views
Is it feasible to stream hexadecimal digits and output the stream in decimal without waiting for all the data to appear
Say you have a file containing gigabytes worth of
deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
and you want to convert it to decimal, in the same way as you would 0xdeadbeef to 3,735,928,559.
...
0
votes
2answers
233 views
Radix sort implemented in c++ for string
i just need radix sort implementation in c++ language which works for strings
i already have the one which works for normal integers
vector < vector < int> > blocks[7];
void ...
0
votes
1answer
78 views
Assist with implementing Radix Sort in JavaScript
I need some help implementing the Radix sort algorthim in JavaScript.
I found this example online, with the following code, but I don't understand how I call the function since it appears to be ...