-
Heap SortAlgoDS/Algorithm 2020. 1. 16. 23:03
1. Overview
Heapsort is a comparison based sorting technique based on a Binary Heap data structure. It is similar to selection sort where we first find the maximum element and place the maximum element at the end. We repeat the same process for the remaining element.
2. Description
2.1 Procedure
- Build a max heap from the input data.
- At this point, the largest item is stored at the root of the heap. Replace it with the last item of the heap followed by reducing the size of heap by 1. Finally, heapify the root of the tree.
- Repeat the above steps while the size of the heap is greater than 1.
Input data: 4, 10, 3, 5, 1 4(0) / \ 10(1) 3(2) / \ 5(3) 1(4) The numbers in bracket represent the indices in the array representation of data. Applying heapify procedure to index 1: 4(0) / \ 10(1) 3(2) / \ 5(3) 1(4) Applying heapify procedure to index 0: 10(0) / \ 5(1) 3(2) / \ 4(3) 1(4) The heapify procedure calls itself recursively to build heap in top down manner.
2.2 Implementation
# Python program for implementation of heap Sort # To heapify subtree rooted at index i. # n is size of heap def heapify(arr, n, i): largest = i # Initialize largest as root l = 2 * i + 1 # left = 2*i + 1 r = 2 * i + 2 # right = 2*i + 2 # See if left child of root exists and is # greater than root if l < n and arr[i] < arr[l]: largest = l # See if right child of root exists and is # greater than root if r < n and arr[largest] < arr[r]: largest = r # Change root, if needed if largest != i: arr[i],arr[largest] = arr[largest],arr[i] # swap # Heapify the root. heapify(arr, n, largest) # The main function to sort an array of given size def heapSort(arr): n = len(arr) # Build a maxheap. for i in range(n, -1, -1): heapify(arr, n, i) # One by one extract elements for i in range(n-1, 0, -1): arr[i], arr[0] = arr[0], arr[i] # swap heapify(arr, i, 0) # Driver code to test above arr = [ 12, 11, 13, 5, 6, 7] heapSort(arr) n = len(arr) print ("Sorted array is") for i in range(n): print ("%d" %arr[i]), # This code is contributed by Mohit Kumra
2.3 Why array-based representation for Binary Heap
Since a Binary Heap is a Complete Binary Tree, it can be easily represented as an array and array-based representation is space-efficient. If the parent node is stored at index I, the left child can be calculated by 2 * I + 1 and right child by 2 * I + 2 (assuming the indexing starts at 0)
2.4 Time and Space Complexity
Particular Worst Worst-case performance O(n log n) Best-case performance O(n log n) Average performance O(n log n) Worst-case space complexity O(n) total O(1) auxiliary Stable No in-place Yes 2.5 Applications
- Sort a nearly sorted (or K sorted) array
- k largest(or smallest) elements in an array
3. Reference
https://www.youtube.com/watch?v=MtQL_ll5KhQ&feature=emb_title
https://www.geeksforgeeks.org/heap-sort/
https://www.quora.com/Which-sorting-algorithm-is-best-and-why
https://www.youtube.com/watch?v=MtQL_ll5KhQ&feature=emb_title
https://www.geeksforgeeks.org/nearly-sorted-algorithm/
https://www.geeksforgeeks.org/k-largestor-smallest-elements-in-an-array/
'AlgoDS > Algorithm' 카테고리의 다른 글
Choosing sorting algorithm (0) 2020.01.17 Bubble sort (0) 2020.01.17 Quicksort (0) 2020.01.16 Binary Search (0) 2020.01.16 Recursion (0) 2020.01.16