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

StalinSort implemented in python #201

Open
wants to merge 3 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
32 changes: 32 additions & 0 deletions Python/StalinSort.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
""" Python 3's implementation of StalinSort (O(N))
"""


def stalin_sort(lis):
i = 0

# While i is less than len of lis
while i < len(lis) - 1:

# If element i is bigger than next element
# Remove element i
# and decrease i by one if i is not zero
if lis[i] > lis[i + 1]:

del lis[i]
if i != 0:
i -= 1

# Else
# Add to i by one
else:
i += 1

return lis


# Driver code
if __name__ == '__main__':
example_lis = [20, 0, 1, 188, 20, 100, 2, 10]
print(f"Uncorrected list: {example_lis}")
print(f"Corrected list: {stalin_sort(example_lis)}")