What is the fastest way to sort an array of whole integers bigger than 0 and less than 100000 in Python? But not using the built in functions like sort.
Im looking at the possibility to combine 2 sport functions depending on input size.
|
What is the fastest way to sort an array of whole integers bigger than 0 and less than 100000 in Python? But not using the built in functions like sort. Im looking at the possibility to combine 2 sport functions depending on input size. |
|||||||||||||||||||
|
|
Since you know the range of numbers, you can use Counting Sort which will be linear in time. |
|||
|
If you are interested in asymptotic time, then counting sort or radix sort provide good performance. However, if you are interested in wall clock time you will need to compare performance between different algorithms using your particular data sets, as different algorithms perform differently with different datasets. In that case, its always worth trying quicksort:
|
|||||||||||
|
|
Early versions of Python used a hybrid of Order of mergesort (average) = if you uses
For comparison between sorting algorithm you can read wiki For detail comparison comp |
|||||||
|
|
Radix sort theoretically runs in linear time (sort time grows roughly in direct proportion to array size ), but in practice Quicksort is probably more suited, unless you're sorting absolutely massive arrays. If you want to make quicksort a bit faster, you can use insertion sort] when the array size becomes small. It would probably be helpful to understand the concepts of algorithmic complexity and Big-O notation too. |
|||
|
We can use count sort using a dictionary to minimize the additional space usage, and keep the running time low as well. The count sort is much slower for small sizes of the input array because of the python vs C implementation overhead. The count sort starts to overtake the regular sort when the size of the array (COUNT) is about 1 million. If you really want huge speedups for smaller size inputs, implement the count sort in C and call it from Python. (Fixed a bug which Aaron (+1) helped catch ...) The python only implementation below compares the 2 approaches...
|
|||||||||||||
|
|
The built in functions are best, but since you can't use them have a look at this: |
|||
|
|