Skip to content

Commit 2288b34

Browse files
authored
Merge pull request #389 from Shreya-0309/main
Added Additional Sorting Algorithms
2 parents 37c6353 + 1fcf2f0 commit 2288b34

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

Data Structures and Algorithms/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
- Bogo Sort
1010

11+
- Cocktail Sort
12+
1113
- Counting Sort
1214

1315
- Linear search (for numbers)
@@ -36,6 +38,8 @@
3638

3739
- Recursive Binary Search
3840

41+
- Shell Sort
42+
3943
- Selection Sort
4044

4145
- Binary Tree traversal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import sys
2+
3+
def cocktail_sort(arr):
4+
n = len(arr)
5+
swapped = True
6+
start = 0
7+
end = n - 1
8+
while swapped:
9+
swapped = False
10+
11+
for i in range(start, end):
12+
if arr[i] > arr[i + 1]:
13+
arr[i], arr[i + 1] = arr[i + 1], arr[i]
14+
swapped = True
15+
if not swapped:
16+
break
17+
swapped = False
18+
end -= 1
19+
20+
for i in range(end - 1, start - 1, -1):
21+
if arr[i] > arr[i + 1]:
22+
arr[i], arr[i + 1] = arr[i + 1], arr[i]
23+
swapped = True
24+
start += 1
25+
return arr
26+
27+
print(cocktail_sort([5, 8, 1, 4, 7, 9, 6, 3, 2]))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
def shell_sort(arr):
2+
n = len(arr)
3+
gap = n // 2 # gap size
4+
5+
while gap > 0:
6+
for i in range(gap, n):
7+
temp = arr[i]
8+
j = i
9+
# Perform insertion sort for the elements separated by the gap
10+
while j >= gap and arr[j - gap] > temp:
11+
arr[j] = arr[j - gap]
12+
j -= gap
13+
arr[j] = temp
14+
gap //= 2
15+
16+
return arr
17+
18+
print(shell_sort([5, 8, 1, 4, 7, 9, 6, 3, 2]))

0 commit comments

Comments
 (0)