Heap (Data Structure)
Heap (Data Structure)
Note that, as shown in the graphic, there is no implied ordering between siblings or cousins and no implied
sequence for an in-order traversal (as there would be in, e.g., a binary search tree). The heap relation
mentioned above applies only between nodes and their parents, grandparents, etc. The maximum number of
children each node can have depends on the type of heap.
Heaps are typically constructed in-place in the same array where the elements are stored, with their structure
being implicit in the access pattern of the operations. Heaps differ in this way from other data structures
with similar or in some cases better theoretic bounds such as Radix trees in that they require no additional
memory beyond that used for storing the keys.
Operations
The common operations involving heaps are:
Basic
find-max (or find-min): find a maximum item of a max-heap, or a minimum item of a min-heap,
respectively (a.k.a. peek)
insert: adding a new key to the heap (a.k.a., push[4])
extract-max (or extract-min): returns the node of maximum value from a max heap [or
minimum value from a min heap] after removing it from the heap (a.k.a., pop[5])
delete-max (or delete-min): removing the root node of a max heap (or min heap), respectively
replace: pop root and push a new key. This is more efficient than a pop followed by a push,
since it only needs to balance once, not twice, and is appropriate for fixed-size heaps.[6]
Creation
Inspection
Internal
Implementation
Heaps are usually implemented with an array, as follows:
Although different type of heaps implement the operations differently, the most common way is as follows:
Insertion: Add the new element at the end of the heap, in the first available free space. If this
will violate the heap property, sift up the new element (swim operation) until the heap
property has been reestablished.
Extraction: Remove the root and insert the last element of the heap in the root. If this will
violate the heap property, sift down the new root (sink operation) to reestablish the heap
property.
Replacement: Remove the root and put the new element in the root and sift down. When
compared to extraction followed by insertion, this avoids a sift up step.
Construction of a binary (or d-ary) heap out of a given array of elements may be performed in linear time
using the classic Floyd algorithm, with the worst-case number of comparisons equal to 2N − 2s2 (N) − e2 (N)
(for a binary heap), where s2 (N) is the sum of all digits of the binary representation of N and e2 (N) is the
exponent of 2 in the prime factorization of N.[7] This is faster than a sequence of consecutive insertions into
an originally empty heap, which is log-linear.[a]
Variants
2–3 heap Fibonacci heap Randomized meldable
B-heap K-D Heap heap
Beap Leaf heap Skew heap
Binary heap Leftist heap Soft heap
Binomial heap Min-max heap Ternary heap
Brodal queue Pairing heap Treap
d-ary heap Radix heap Weak heap
a. Each insertion takes O(log(k)) in the existing size of the heap, thus . Since
e. Brodal and Okasaki later describe a persistent variant with the same bounds except for
decrease-key, which is not supported. Heaps with n elements can be constructed bottom-up
in O(n).[18]
Applications
The heap data structure has many applications.
Heapsort: One of the best sorting methods being in-place and with no quadratic worst-case
scenarios.
Selection algorithms: A heap allows access to the min or max element in constant time, and
other selections (such as median or kth-element) can be done in sub-linear time on data that
is in a heap.[20]
Graph algorithms: By using heaps as internal traversal data structures, run time will be
reduced by polynomial order. Examples of such problems are Prim's minimal-spanning-tree
algorithm and Dijkstra's shortest-path algorithm.
Priority queue: A priority queue is an abstract concept like "a list" or "a map"; just as a list can
be implemented with a linked list or an array, a priority queue can be implemented with a
heap or a variety of other methods.
K-way merge: A heap data structure is useful to merge many already-sorted input streams
into a single sorted output stream. Examples of the need for merging include external sorting
and streaming results from distributed data such as a log structured merge tree. The inner
loop is obtaining the min element, replacing with the next element for the corresponding
input stream, then doing a sift-down heap operation. (Alternatively the replace function.)
(Using extract-max and insert functions of a priority queue are much less efficient.)
See also
Sorting algorithm
Search data structure
Stack (abstract data type)
Queue (abstract data type)
Tree (data structure)
Treap, a form of binary search tree based on heap-ordered trees
References
1. Black (ed.), Paul E. (2004-12-14). Entry for heap in Dictionary of Algorithms and Data
Structures. Online version. U.S. National Institute of Standards and Technology, 14
December 2004. Retrieved on 2017-10-08 from https://xlinux.nist.gov/dads/HTML/heap.html.
2. CORMEN, THOMAS H. (2009). INTRODUCTION TO ALGORITHMS. United States of
America: The MIT Press Cambridge, Massachusetts London, England. pp. 151–152.
ISBN 978-0-262-03384-8.
3. Williams, J. W. J. (1964), "Algorithm 232 - Heapsort", Communications of the ACM, 7 (6):
347–348, doi:10.1145/512274.512284 (https://doi.org/10.1145%2F512274.512284)
4. The Python Standard Library, 8.4. heapq — Heap queue algorithm, heapq.heappush (https://
docs.python.org/3/library/heapq.html#heapq.heappush)
5. The Python Standard Library, 8.4. heapq — Heap queue algorithm, heapq.heappop (https://d
ocs.python.org/3/library/heapq.html#heapq.heappop)
6. The Python Standard Library, 8.4. heapq — Heap queue algorithm, heapq.heapreplace (http
s://docs.python.org/3/library/heapq.html#heapq.heapreplace)
7. Suchenek, Marek A. (2012), "Elementary Yet Precise Worst-Case Analysis of Floyd's Heap-
Construction Program", Fundamenta Informaticae, 120 (1), IOS Press: 75–92,
doi:10.3233/FI-2012-751 (https://doi.org/10.3233%2FFI-2012-751).
8. Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L. (1990). Introduction to
Algorithms (1st ed.). MIT Press and McGraw-Hill. ISBN 0-262-03141-8.
9. "Binomial Heap | Brilliant Math & Science Wiki" (https://brilliant.org/wiki/binomial-heap/).
brilliant.org. Retrieved 2019-09-30.
10. Brodal, Gerth Stølting; Okasaki, Chris (November 1996), "Optimal purely functional priority
queues", Journal of Functional Programming, 6 (6): 839–857,
doi:10.1017/s095679680000201x (https://doi.org/10.1017%2Fs095679680000201x)
11. Iacono, John (2000), "Improved upper bounds for pairing heaps", Proc. 7th Scandinavian
Workshop on Algorithm Theory (http://john2.poly.edu/papers/swat00/paper.pdf) (PDF),
Lecture Notes in Computer Science, vol. 1851, Springer-Verlag, pp. 63–77, arXiv:1110.4428
(https://arxiv.org/abs/1110.4428), CiteSeerX 10.1.1.748.7812 (https://citeseerx.ist.psu.edu/vie
wdoc/summary?doi=10.1.1.748.7812), doi:10.1007/3-540-44985-X_5 (https://doi.org/10.100
7%2F3-540-44985-X_5), ISBN 3-540-67690-2
12. Fredman, Michael Lawrence (July 1999). "On the Efficiency of Pairing Heaps and Related
Data Structures" (http://www.uqac.ca/azinflou/Fichiers840/EfficiencyPairingHeap.pdf) (PDF).
Journal of the Association for Computing Machinery. 46 (4): 473–501.
doi:10.1145/320211.320214 (https://doi.org/10.1145%2F320211.320214).
13. Pettie, Seth (2005). Towards a Final Analysis of Pairing Heaps (http://web.eecs.umich.edu/~
pettie/papers/focs05.pdf) (PDF). FOCS '05 Proceedings of the 46th Annual IEEE
Symposium on Foundations of Computer Science. pp. 174–183. CiteSeerX 10.1.1.549.471
(https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.549.471).
doi:10.1109/SFCS.2005.75 (https://doi.org/10.1109%2FSFCS.2005.75). ISBN 0-7695-2468-
0.
14. Haeupler, Bernhard; Sen, Siddhartha; Tarjan, Robert E. (November 2011). "Rank-pairing
heaps" (http://sidsen.org/papers/rp-heaps-journal.pdf) (PDF). SIAM J. Computing. 40 (6):
1463–1485. doi:10.1137/100785351 (https://doi.org/10.1137%2F100785351).
15. Fredman, Michael Lawrence; Tarjan, Robert E. (July 1987). "Fibonacci heaps and their uses
in improved network optimization algorithms" (http://bioinfo.ict.ac.cn/~dbu/AlgorithmCourses/
Lectures/Fibonacci-Heap-Tarjan.pdf) (PDF). Journal of the Association for Computing
Machinery. 34 (3): 596–615. CiteSeerX 10.1.1.309.8927 (https://citeseerx.ist.psu.edu/viewdo
c/summary?doi=10.1.1.309.8927). doi:10.1145/28869.28874 (https://doi.org/10.1145%2F288
69.28874).
16. Brodal, Gerth Stølting; Lagogiannis, George; Tarjan, Robert E. (2012). Strict Fibonacci heaps
(http://www.cs.au.dk/~gerth/papers/stoc12.pdf) (PDF). Proceedings of the 44th symposium
on Theory of Computing - STOC '12. pp. 1177–1184. CiteSeerX 10.1.1.233.1740 (https://cite
seerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.233.1740). doi:10.1145/2213977.2214082
(https://doi.org/10.1145%2F2213977.2214082). ISBN 978-1-4503-1245-5.
17. Brodal, Gerth S. (1996), "Worst-Case Efficient Priority Queues" (http://www.cs.au.dk/~gerth/p
apers/soda96.pdf) (PDF), Proc. 7th Annual ACM-SIAM Symposium on Discrete Algorithms,
pp. 52–58
18. Goodrich, Michael T.; Tamassia, Roberto (2004). "7.3.6. Bottom-Up Heap Construction".
Data Structures and Algorithms in Java (3rd ed.). pp. 338–341. ISBN 0-471-46983-1.
19. Takaoka, Tadao (1999), Theory of 2–3 Heaps (https://ir.canterbury.ac.nz/bitstream/handle/10
092/14769/2-3heaps.pdf) (PDF), p. 12
20. Frederickson, Greg N. (1993), "An Optimal Algorithm for Selection in a Min-Heap",
Information and Computation (https://web.archive.org/web/20121203045606/http://ftp.cs.purd
ue.edu/research/technical_reports/1991/TR%2091-027.pdf) (PDF), vol. 104, Academic
Press, pp. 197–214, doi:10.1006/inco.1993.1030 (https://doi.org/10.1006%2Finco.1993.103
0), archived from the original (http://ftp.cs.purdue.edu/research/technical_reports/1991/TR%2
091-027.pdf) (PDF) on 2012-12-03, retrieved 2010-10-31
External links
Heap (http://mathworld.wolfram.com/Heap.html) at Wolfram MathWorld
Explanation (https://www.cs.auckland.ac.nz/software/AlgAnim/heaps.html) of how the basic
heap algorithms work
Bentley, Jon Louis (2000). Programming Pearls (2nd ed.). Addison Wesley. pp. 147–162.
ISBN 0201657880.