Skip to content

Added Reverse Selection Sort Algorithm #12012

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
44 changes: 44 additions & 0 deletions sorts/reverse_selection_sort.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
"""
A Python implementation of the Reverse Selection Sort algorithm.

This algorithm progressively sorts the array by finding the largest
element and reversing subarrays to place it at the correct position.

Inspired by the Pancake Sorting algorithm.
For more information, see: https://en.wikipedia.org/wiki/Pancake_sorting

Examples:
>>> reverse_selection_sort([45, 23, 11, 89, 54, 1, 3, 36])
[89, 54, 45, 36, 23, 11, 3, 1]
>>> reverse_selection_sort([0, -89, 32, 5, 46, 8, 11])
[46, 32, 11, 8, 5, 0, -89]
>>> reverse_selection_sort([34, -2, -1, 98, -42])
[98, 34, -1, -2, -42]
"""


def reverse_selection_sort(collection: list) -> list:
"""
A pure implementation of reverse selection sort algorithm in Python.
:param collection: some mutable ordered collection with heterogeneous
comparable items inside
:return: the same collection sorted in descending order
"""
n = len(collection)
for i in range(n):
# Find the maximum element in the unsorted portion
max_idx = i
for j in range(i + 1, n):
if collection[j] > collection[max_idx]:
max_idx = j

# Reverse the subarray from the current position to the end
collection[i : max_idx + 1] = reversed(collection[i : max_idx + 1])

return collection


if __name__ == "__main__":
user_input = input("Enter numbers separated by a comma:\n").strip()
unsorted = [int(item) for item in user_input.split(",")]
print(reverse_selection_sort(unsorted))