mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
address merge_soft duplicate files (#1612)
Here the old file merge_sort_fastest is renamed to unknown_sort. Because it is not merge sort algorithm. Comments are updated accordingly.
This commit is contained in:
parent
caad74466a
commit
494fb4fb49
|
@ -1,6 +1,5 @@
|
||||||
"""
|
"""
|
||||||
Python implementation of the fastest merge sort algorithm.
|
Python implementation of a sort algorithm.
|
||||||
Takes an average of 0.6 microseconds to sort a list of length 1000 items.
|
|
||||||
Best Case Scenario : O(n)
|
Best Case Scenario : O(n)
|
||||||
Worst Case Scenario : O(n^2) because native python functions:min, max and remove are already O(n)
|
Worst Case Scenario : O(n^2) because native python functions:min, max and remove are already O(n)
|
||||||
"""
|
"""
|
Loading…
Reference in New Issue
Block a user