Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 1.25 KB

File metadata and controls

35 lines (20 loc) · 1.25 KB

Heaps

Table of contents


General information

A heap is a tree-based data structure which is an almost complete tree that satisfies the heap property: in a max heap, for any given node C, if P is a parent node of C, then the key of P is greater than or equal to the key of C.

🔗

  • Heap – Wikipedia

Binary heaps

🔗

📖