All Questions
2 questions
3votes
2answers
218views
Sorting an array of positive integers including 0 much faster than Radix Sort
I was working on an Limit Order Book structure in JS and came up with this algorithm. I am pretty sure this must have already been implemented but couldn't even find a clue over the web. The thing is, ...
3votes
1answer
791views
Radix sort implementation in JS (LSD)
I have written LSD radix sort implementation in JavaScript (6 functions in total). It sorts positive and negative integers: ...