MCPcopy Index your code
hub / github.com/TheAlgorithms/Python / intro_sort.py

File intro_sort.py

sorts/intro_sort.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1"""
2Introspective Sort is a hybrid sort (Quick Sort + Heap Sort + Insertion Sort)
3if the size of the list is under 16, use insertion sort
4https://en.wikipedia.org/wiki/Introsort

Callers

nothing calls this directly

Calls 2

sortFunction · 0.85
splitMethod · 0.80

Tested by

no test coverage detected