I am wondering what the fastest algorithm would be for this. I have 8 integers between 0 and 3000 and I need to sort them. Although there are only 8 integers, this operation w
A good source for comparing sorting algos is http://www.sorting-algorithms.com/.
Note that even the initial order status affect the results. But anyway for 8 integers even a plain bubble sort should do the job.