1 / 13

Heapsort

Heapsort. By Pedro O ñate CS-146 Dr. Sin-Min Lee. Overview:. Uses a heap as its data structure In-place sorting algorithm – memory efficient Time complexity – O(n log(n)). What is a Heap?.

clint
Download Presentation

Heapsort

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Heapsort By Pedro Oñate CS-146 Dr. Sin-Min Lee

  2. Overview: • Uses a heap as its data structure • In-place sorting algorithm – memory efficient • Time complexity – O(n log(n))

  3. What is a Heap? A heap is also known as a priority queue and can be represented by a binary tree with the following properties: Structure property:A heap is a completely filled binary tree with the exception of the bottom row, which is filled from left to right Heap Order property: For every node x in the heap, the parent of x greater than or equal to the value of x. (known as a maxHeap).

  4. 53 44 25 15 21 13 18 3 12 5 7 Example: a heap

  5. Algorithm Step 1. Build Heap – O(n) - Build binary tree taking N items as input, ensuring the heap structure property is held, in other words, build a complete binary tree. - Heapify the binary tree making sure the binary tree satisfies the Heap Order property. Step 2. Perform n deleteMax operations – O(log(n)) - Delete the maximum element in the heap – which is the root node, and place this element at the end of the sorted array.

  6. Simplifying things • For speed and efficiency we can represent the heap with an array. Place the root at array index 1, its left child at index 2, its right child at index 3, so on and so forth… 53 44 25 15 21 13 18 3 12 5 7 0 1 2 3 4 5 6 7 8 9 10 11

  7. 53 44 25 15 21 13 18 3 12 5 7 0 1 2 3 4 5 6 7 8 9 10 11 For any node i, the following formulas apply: The index of its parent = i / 2 Index of left child = 2 * i Index of right child = 2 * i + 1

  8. 21 15 25 3 5 12 7 19 45 2 9 Sample Run • Start with unordered array of data Array representation: Binary tree representation:

  9. 45 21 21 21 21 21 15 15 15 21 15 45 25 25 25 25 25 25 3 45 45 3 19 19 9 9 9 9 9 5 12 12 12 12 12 12 7 7 7 7 7 7 19 19 19 15 15 19 45 45 3 3 3 3 2 2 2 2 2 2 9 5 5 5 5 5 Sample Run • Heapify the binary tree -

  10. 45 21 25 19 9 12 7 15 3 2 5 Step 2 – perform n – 1 deleteMax(es), and replace last element in heap with first, then re-heapify. Place deleted element in the last nodes position. 25 21 12 19 9 5 7 15 3 2 25 21 21 12 19 12 19 9 5 7 15 9 5 7 15 3 2 2 3

  11. 21 19 19 12 15 12 15 9 5 7 3 9 5 7 2 3 2 19 15 15 12 9 12 3 9 5 7 3 2 5 7 2

  12. 15 12 9 12 9 7 3 2 5 7 3 2 5 9 12 5 7 9 7 3 2 3 2 5 2 …and finally

  13. Conclusion • 1st Step- Build heap, O(n) time complexity • 2nd Step – perform n deleteMax operations, each with O(log(n)) time complexity • total time complexity = O(n log(n)) • Pros: fast sorting algorithm, memory efficient, especially for very large values of n. • Cons: slower of the O(n log(n)) sorting algorithms

More Related