We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a23c7 commit 6c46eafCopy full SHA for 6c46eaf
1 file changed
sorts/power_sort.py
@@ -14,6 +14,10 @@
14
Time Complexity: O(n log n) worst case, O(n) for nearly sorted data
15
Space Complexity: O(n) for merge buffer
16
17
+References:
18
+- https://en.wikipedia.org/wiki/Powersort
19
+- https://arxiv.org/abs/1805.04154 (Original paper by Munro and Wild)
20
+
21
For doctests run:
22
python -m doctest -v power_sort.py
23
0 commit comments