Created
November 16, 2016 14:29
-
-
Save komly/abbac4887438a978d4e93aeeea34f088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Меняет первое вхождение a на b в arr | |
def replace_first(a, b, arr): | |
arr = arr[:] | |
for i, x in enumerate(arr): | |
if x == a: | |
arr[i] = b | |
return arr | |
return arr | |
def selection_sort(a, i=0): | |
if i == len(a) - 1: | |
return a | |
head, current, tail= a[:i], a[i], a[i + 1:] | |
if min(tail) < current: | |
return selection_sort(head + [min(tail)] + replace_first(min(tail), current, tail), i + 1) | |
return selection_sort(a, i + 1) | |
print(selection_sort([4, 3, 2, 1])) | |
#[1, 2, 3, 4] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment