Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Additional Sorting Algorithms #389

Merged
merged 7 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Data Structures and Algorithms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

- Bogo Sort

- Cocktail Sort

- Counting Sort

- Linear search (for numbers)
Expand Down Expand Up @@ -36,6 +38,8 @@

- Recursive Binary Search

- Shell Sort

- Selection Sort

- Binary Tree traversal
Expand Down
27 changes: 27 additions & 0 deletions Data Structures and Algorithms/Sorting Algorithms/cocktail_sort.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import sys

def cocktail_sort(arr):
n = len(arr)
swapped = True
start = 0
end = n - 1
while swapped:
swapped = False

for i in range(start, end):
if arr[i] > arr[i + 1]:
arr[i], arr[i + 1] = arr[i + 1], arr[i]
swapped = True
if not swapped:
break
swapped = False
end -= 1

for i in range(end - 1, start - 1, -1):
if arr[i] > arr[i + 1]:
arr[i], arr[i + 1] = arr[i + 1], arr[i]
swapped = True
start += 1
return arr

print(cocktail_sort([5, 8, 1, 4, 7, 9, 6, 3, 2]))
18 changes: 18 additions & 0 deletions Data Structures and Algorithms/Sorting Algorithms/shell_sort.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
def shell_sort(arr):
n = len(arr)
gap = n // 2 # gap size

while gap > 0:
for i in range(gap, n):
temp = arr[i]
j = i
# Perform insertion sort for the elements separated by the gap
while j >= gap and arr[j - gap] > temp:
arr[j] = arr[j - gap]
j -= gap
arr[j] = temp
gap //= 2

return arr

print(shell_sort([5, 8, 1, 4, 7, 9, 6, 3, 2]))
Loading