-
-
Save reterVision/385df7f4c665b4c3d714 to your computer and use it in GitHub Desktop.
Heap sort
This file contains hidden or 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
| #!/usr/bin/env python | |
| #-*-coding:utf-8-*- | |
| def heap_sort(lst): | |
| for start in range((len(lst)-2)/2, -1, -1): | |
| sift_down(lst, start, len(lst)-1) | |
| for end in range(len(lst)-1, 0, -1): | |
| lst[0], lst[end] = lst[end], lst[0] | |
| sift_down(lst, 0, end-1) | |
| return lst | |
| def sift_down(lst, start, end): | |
| root = start | |
| while True: | |
| child = 2*root + 1 | |
| if child > end: | |
| break | |
| if child+1 <= end and lst[child] < lst[child+1]: | |
| child += 1 | |
| if lst[root] < lst[child]: | |
| lst[root], lst[child] = lst[child], lst[root] | |
| root = child | |
| else: | |
| break | |
| def main(): | |
| l = [9, 2, 1, 7, 6, 8, 5, 3, 4] | |
| print heap_sort(l) | |
| if __name__ == "__main__": | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment