Python/sorts
BruceLee569 34889fc6d8 Update quick_sort.py (#928)
Use the last element as the first pivot, for it's easy to pop, this saves one element space.
Iterating with the original list saves half the space, instead of generate a new shallow copy list by slice method.
2019-06-28 23:55:31 +08:00
..
Bitonic_Sort.py refactor 2019-05-26 21:56:10 +05:30
bogo_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
bubble_sort.py Update bubble_sort.py (#535) 2018-10-27 13:21:44 +02:00
bucket_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
cocktail_shaker_sort.py Modernize Python 2 code to get ready for Python 3 2017-11-25 10:23:50 +01:00
comb_sort.py comb_sort: fix typo and indentation 2018-10-01 23:46:47 -03:00
counting_sort.py Remove duplicate counting sort (#376) 2018-10-02 15:06:24 +05:30
cycle_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
external_sort.py refactor 2019-05-26 21:56:10 +05:30
gnome_sort.py Modernize Python 2 code to get ready for Python 3 2017-11-25 10:23:50 +01:00
heap_sort.py Modernize Python 2 code to get ready for Python 3 2017-11-25 10:23:50 +01:00
insertion_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
merge_sort_fastest.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
merge_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
normal_distribution_quick_sort.md snake_case all the things 2018-10-19 17:14:25 -05:00
Odd-Even_transposition_parallel.py Odd-Even Transposition Sort (#769) 2019-06-07 23:38:43 +08:00
Odd-Even_transposition_single-threaded.py Odd-Even Transposition Sort (#769) 2019-06-07 23:38:43 +08:00
pancake_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
pigeon_sort.py add pigeon hole sort (#833) 2019-05-24 22:46:39 +05:30
quick_sort_3_partition.py snake_case all the things 2018-10-19 17:14:25 -05:00
quick_sort.py Update quick_sort.py (#928) 2019-06-28 23:55:31 +08:00
radix_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
random_normal_distribution_quicksort.py snake_case all the things 2018-10-19 17:14:25 -05:00
random_pivot_quick_sort.py Adding quick sort where random pivot point is chosen (#774) 2019-04-30 21:16:42 +08:00
selection_sort.py Optimised for loop iteration 2018-10-07 14:33:56 +05:30
shell_sort.py Modernize Python 2 code to get ready for Python 3 2017-11-25 10:23:50 +01:00
sorting_graphs.png snake_case all the things 2018-10-19 17:14:25 -05:00
tests.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
tim_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
topological_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
tree_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00
wiggle_sort.py Adding unit tests for sorting functions, and improving readability on some sorting algorithms (#784) 2019-05-25 21:41:24 +08:00