2010-10-21, 02:10 PM
Hazzy Wrote:Assuming the animations reflect time consumption... is there any reason to use one other than Quick Sort?If you are able to make certain assumptions about the data to be sorted (such as that they are all integers from 1 to 100), you can use a faster sorting algorithm like bucket sort. Basically you can just count how many times each number occurs and then make the sorted list based on the count.

