Python/sorts
FrogBattle e58a5e6842 Update tim_sort.py (#972)
* Update tim_sort.py


Update tim_sort.py

The previous algorithm was skipping numbers, according to issue #959, and my own tests.
The version I am applying uses a while loop, which works correctly and is easier to compute, as there is no break statement.

* Update tim_sort.py
2019-07-30 18:06:48 +02:00
..
bitonic_sort.py #315 Renamed all files to snake_case (#993) 2019-07-11 11:16:42 +02:00
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 Travis CI: Run black, doctest, flake8, mypy, and pytest (#964) 2019-07-08 23:27:51 +08:00
bucket_sort.py Update Bucket Sort time complexity analysis (#918) 2019-07-12 23:16:14 +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 Added Whitespace and Docstring (#924) 2019-07-01 16:10:18 +08: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 Refactored to one pop() (#917) 2019-07-03 23:31:10 +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 #315 Renamed all files to snake_case (#993) 2019-07-11 11:16:42 +02:00
odd_even_transposition_single_threaded.py #315 Renamed all files to snake_case (#993) 2019-07-11 11:16:42 +02:00
pancake_sort.py Improve Formatting and Code Quality (#934) 2019-07-02 09:35:43 +05:30
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
tim_sort.py Update tim_sort.py (#972) 2019-07-30 18:06:48 +02:00
topological_sort.py Added Whitespace and Docstring (#924) 2019-07-01 16:10:18 +08:00
tree_sort.py Added Whitespace and Docstring (#924) 2019-07-01 16:10:18 +08:00
wiggle_sort.py Added Whitespace and Docstring (#924) 2019-07-01 16:10:18 +08:00