Python/sorts
Prateek Chanda a3ab980816 random_normaldistribution_quicksort
This is for creating an algorithm implementing QuickSort Algorithm where the pivot element is chosen randomly between first and last elements of the array and the array elements are taken from a Standard Normal Distribution.

This is different from the ordinary quicksort in the sense, that it applies more to real life problems , where elements usually follow a normal distribution. Also the pivot is randomized to make it a more generic one.
2017-02-03 22:02:05 +05:30
..
bogosort.py PEP style and tree traversals 2016-09-26 02:45:14 +05:30
bubble_sort.py PEP style and tree traversals 2016-09-26 02:45:14 +05:30
cocktail_shaker_sort.py Added implementations of gnome sort and cocktail shaker sort 2016-12-04 17:00:20 +02:00
gnome_sort.py Added implementations of gnome sort and cocktail shaker sort 2016-12-04 17:00:20 +02:00
heap_sort.py PEP style and tree traversals 2016-09-26 02:45:14 +05:30
insertion_sort.py PEP style and tree traversals 2016-09-26 02:45:14 +05:30
merge_sort.py Fixed typos and added the shell sort algorithm 2016-08-16 12:43:02 -04:00
quick_sort.py updated version 2017-01-03 00:08:42 -08:00
random_normaldistribution_quicksort.py random_normaldistribution_quicksort 2017-02-03 22:02:05 +05:30
selection_sort.py PEP style and tree traversals 2016-09-26 02:45:14 +05:30
shell_sort.py PEP style and tree traversals 2016-09-26 02:45:14 +05:30
sortinggraphs.png Add files via upload 2016-12-13 16:17:57 +05:30