mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
add doctest for quick_sort_3_partition. Contributes to #9943
This commit is contained in:
parent
59ff87dc55
commit
5f66061be5
|
@ -1,4 +1,27 @@
|
|||
def quick_sort_3partition(sorting: list, left: int, right: int) -> None:
|
||||
""" "
|
||||
Python implementation of quick sort algorithm with 3-way partition.
|
||||
The idea of 3-way quick sort is based on "Dutch National Flag algorithm".
|
||||
|
||||
:param sorting: sort list
|
||||
:param left: left endpoint of sorting
|
||||
:param right: right endpoint of sorting
|
||||
:return: None
|
||||
|
||||
Examples:
|
||||
>>> array1 = [5, -1, -1, 5, 5, 24, 0]
|
||||
>>> quick_sort_3partition(array1, 0, 6)
|
||||
>>> array1
|
||||
[-1, -1, 0, 5, 5, 5, 24]
|
||||
>>> array2 = [9, 0, 2, 6]
|
||||
>>> quick_sort_3partition(array2, 0, 3)
|
||||
>>> array2
|
||||
[0, 2, 6, 9]
|
||||
>>> array3 = []
|
||||
>>> quick_sort_3partition(array3, 0, 0)
|
||||
>>> array3
|
||||
[]
|
||||
"""
|
||||
if right <= left:
|
||||
return
|
||||
a = i = left
|
||||
|
|
Loading…
Reference in New Issue
Block a user