Changed QuickSort.py

Converted all indentations to spaces (different files had spaces or tabs)
This commit is contained in:
Tony Sappe
2016-07-29 15:31:20 -04:00
parent b7eae6b0e3
commit 37ddd2c8d0
5 changed files with 104 additions and 89 deletions

View File

@@ -1,31 +1,33 @@
def quicksort(A, p, r):
def quick_sort(A, p, r):
if p < r:
q = partition(A, p, r)
quicksort(A, p, q - 1)
quicksort(A, q + 1, r)
quick_sort(A, p, q - 1)
quick_sort(A, q + 1, r)
return A
def partition(A, p, r):
x = A[r]
i = p - 1
for j in range(p, r):
if A[j] <= x:
if A[j] <= A[r]:
i += 1
tmp = A[i]
A[i] = A[j]
A[j] = tmp
tmp = A[i+1]
A[i+1] = A[r]
A[r] = tmp
A[i], A[j] = A[j], A[i]
A[i + 1], A[r] = A[r], A[i + 1]
return i + 1
if __name__ == "__main__":
print('Enter values seperated by space:')
A = [int (item) for item in input().split(' ')]
# A = [23, 45, 43, 12, 67, 98, 123, 99]
# partition(A, 0, 7)
print(A)
quicksort(A, 0, 7)
print(A)
def main():
try:
print("Enter numbers separated by spaces")
s = raw_input()
inputs = list(map(int, s.split(' ')))
except Exception as e:
print(e)
else:
sorted_input = quick_sort(inputs, 0, len(inputs) - 1)
print('\nSorted list (min to max): {}'.format(sorted_input))
if __name__ == '__main__':
print('==== Quick Sort ====\n')
main()