module documentation

Provides in-place implementation of quick-sort for elements in an array-based sequence.

Function inplace_quick_sort Sort the list from S[a] to S[b] inclusive using the quick-sort algorithm.
def inplace_quick_sort(S, a, b):

Sort the list from S[a] to S[b] inclusive using the quick-sort algorithm.