Created
February 22, 2017 09:59
-
-
Save shafiqshams/c3744b47a77e5ddfcc9dc8a3b061a44e to your computer and use it in GitHub Desktop.
HeapSort The algorithm runs in two steps. Given an array of data, first, we build a heap and then turn it into a sorted list by calling deleteMin. The running time of the algorithm is O(n log n). Example. Given an array {3, 1, 6, 5, 2, 4}.
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
1. build a heap 1, 2, 4, 5, 3, 6 | |
2. turn this heap into a sorted list | |
deleteMin | |
1, 2, 4, 5, 3, 6 swap 1 and 6 | |
6, 2, 4, 5, 3, 1 restore heap | |
2, 6, 4, 5, 3, 1 | |
2, 3, 4, 5, 6, 1 | |
deleteMin | |
2, 3, 4, 5, 6, 1 swap 2 and 6 | |
6, 3, 4, 5, 2, 1 restore heap | |
3, 6, 4, 5, 2, 1 | |
3, 5, 4, 6, 2, 1 | |
deleteMin | |
3, 5, 4, 6, 2, 1 swap 3 and 6 | |
6, 5, 4, 3, 2, 1 restore heap | |
4, 5, 6, 3, 2, 1 restore heap | |
deleteMin | |
4, 5, 6, 3, 2, 1 swap 4 and 6 | |
6, 5, 4, 3, 2, 1 restore heap | |
5, 6, 4, 3, 2, 1 | |
deleteMin | |
6, 5, 4, 3, 2, 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment