2016-07-19 07:04:43 +00:00
|
|
|
|
2016-07-29 18:47:32 +00:00
|
|
|
def simple_insertion_sort(int_list):
|
2016-07-29 19:14:30 +00:00
|
|
|
count = len(int_list)
|
|
|
|
for i in range(1, count):
|
2016-07-29 18:47:32 +00:00
|
|
|
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
|
|
|
|
2016-07-29 18:47:32 +00:00
|
|
|
return int_list
|
2016-07-19 07:04:43 +00:00
|
|
|
|
|
|
|
|
2016-07-29 19:14:30 +00:00
|
|
|
def main():
|
2016-07-29 18:47:32 +00:00
|
|
|
try:
|
2016-07-29 19:14:30 +00:00
|
|
|
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
|
|
|
|
|
2016-07-29 18:47:32 +00:00
|
|
|
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
|
|
|
|
2016-07-29 18:47:32 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
print('==== Insertion Sort ====\n')
|
2016-07-29 19:14:30 +00:00
|
|
|
main()
|