-
Notifications
You must be signed in to change notification settings - Fork 1k
/
gnome_sort.py
43 lines (33 loc) · 1.28 KB
/
gnome_sort.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
Gnome Sort algorithm implementation in Python3
Introduction:
It is a simple exchange sorting algorithm similar to insertion sort,
except that it moves an element to its proper place by a series of swaps,
as in bubble sort. In each iteration the algorithm finds the first place,
where two adjacent elements are in the wrong order and swaps them.
Afterwards it compares the swapped element with previous elements and
swaps them if they are in the wrong order. If adjacent elements are in
proper order or the end is reached, it starts a new iteration.
"""
def gnomeSort(nums):
for i in range(1, len(nums)):
while (i != 0 and nums[i] < nums[i - 1]):
nums[i - 1], nums[i] = nums[i], nums[i - 1]
i -= 1
user_input = input("Enter the numbers separated by a comma: ").strip()
# in one line: nums = [int(item) for item in user_input.split(',')]
nums = user_input.split(',')
sequence = []
for item in nums:
sequence.append(int(item))
gnomeSort(nums)
print("Sorted nums of numbers using gnome sort method:", nums)
"""
Sample input:
Enter the numbers separated by a comma: 78,45,67,21,90
Sample output:
Sorted nums of numbers using gnome sort method: [21, 45, 67, 78, 90]
Best case time complexity: O(n)
Worst case time complexity: O(n^2)
Space complexity: O(1)
"""