Python/InsertionSort.py

33 lines
676 B
Python
Raw Normal View History

2016-07-19 07:04:43 +00:00
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
2016-07-19 07:04:43 +00:00
return int_list
2016-07-19 07:04:43 +00:00
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
except Exception as e:
print(e)
else:
sorted_input = simple_insertion_sort(inputs)
print('\nSorted list (min to max): {}'.format(sorted_input))
2016-07-19 07:04:43 +00:00
if __name__ == '__main__':
print('==== Insertion Sort ====\n')
main()