Last active
March 30, 2017 05:53
quick sort(easy way, but more memory)
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
#!/urs/bin/env python | |
def qsort(alist): | |
""" | |
quick sort(easy way, but more memory) | |
test: python -m doctest qsort.py | |
>>> import math | |
>>> import random | |
>>> size = 100 | |
>>> alist = [random.randint(0, size * 10) for i in range(size)] | |
>>> qlist = qsort(alist) | |
>>> alist.sort() | |
>>> assert qlist == alist | |
""" | |
if len(alist) <= 1: | |
return alist | |
key = alist[0] | |
left_list, middle_list, right_list = [], [], [] | |
[{i < key: left_list, i == key: middle_list, i > key: right_list}[ | |
True | |
].append(i) for i in alist] | |
return qsort(left_list) + middle_list + qsort(right_list) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment