mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-18 16:27:02 +00:00
variable in function should be lowercase (#768)
This commit is contained in:
parent
2fc2ae3f32
commit
48553da785
|
@ -12,7 +12,7 @@ python quick_sort.py
|
|||
from __future__ import print_function
|
||||
|
||||
|
||||
def quick_sort(ARRAY):
|
||||
def quick_sort(collection):
|
||||
"""Pure implementation of quick sort algorithm in Python
|
||||
|
||||
:param collection: some mutable ordered collection with heterogeneous
|
||||
|
@ -29,14 +29,14 @@ def quick_sort(ARRAY):
|
|||
>>> quick_sort([-2, -5, -45])
|
||||
[-45, -5, -2]
|
||||
"""
|
||||
ARRAY_LENGTH = len(ARRAY)
|
||||
if( ARRAY_LENGTH <= 1):
|
||||
return ARRAY
|
||||
length = len(collection)
|
||||
if length <= 1:
|
||||
return collection
|
||||
else:
|
||||
PIVOT = ARRAY[0]
|
||||
GREATER = [ element for element in ARRAY[1:] if element > PIVOT ]
|
||||
LESSER = [ element for element in ARRAY[1:] if element <= PIVOT ]
|
||||
return quick_sort(LESSER) + [PIVOT] + quick_sort(GREATER)
|
||||
pivot = collection[0]
|
||||
greater = [element for element in collection[1:] if element > pivot]
|
||||
lesser = [element for element in collection[1:] if element <= pivot]
|
||||
return quick_sort(lesser) + [pivot] + quick_sort(greater)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in New Issue
Block a user