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,32 +1,32 @@
def simple_insertion_sort(int_list):
count = len(int_list)
for i in range(1, count):
temp = int_list[i]
j = i - 1
while(j >= 0 and temp < int_list[j]):
int_list[j + 1] = int_list[j]
j -= 1
int_list[j + 1] = temp
count = len(int_list)
for i in range(1, count):
temp = int_list[i]
j = i - 1
while(j >= 0 and temp < int_list[j]):
int_list[j + 1] = int_list[j]
j -= 1
int_list[j + 1] = temp
return int_list
return int_list
def main():
try:
print("Enter numbers separated by spaces:")
s = raw_input()
inputs = list(map(int, s.split(' ')))
if len(inputs) < 2:
print('No Enough values to sort!')
raise Exception
try:
print("Enter numbers separated by spaces:")
s = raw_input()
inputs = list(map(int, s.split(' ')))
if len(inputs) < 2:
print('No Enough values to sort!')
raise Exception
except Exception as e:
print(e)
else:
sorted_input = simple_insertion_sort(inputs)
print('\nSorted list (min to max): {}'.format(sorted_input))
except Exception as e:
print(e)
else:
sorted_input = simple_insertion_sort(inputs)
print('\nSorted list (min to max): {}'.format(sorted_input))
if __name__ == '__main__':
print('==== Insertion Sort ====\n')
main()
print('==== Insertion Sort ====\n')
main()