What is this O(N*k) sorting algorithm?
When working on " The fastest sort for BrainF***" , I discovered this algorithm, which is O(N*k), where k is the maximum value in the input. It requires O(N) extra storage. The physical analogy is that you have N stacks of tokens. The height of the stack represents the value to be sorted. (Each token represents a bit). Set aside space for another N stacks. You take one token off the top of each stack that has tokens, and then add one to each stack in the new set from right to left until your hand is empty. Repeat until all original stacks are empty. Now the new set is sorted ascending left to