d-Heap

d-Heap is a #202202062259 where the nodes have \(d\) children. The most common d-Heaps other than 2-heap#, are 3-heap and 4-heap.

Analysis

  • Insertion will result in \(O(\log_d N)\)
  • DeleteMin will result in \(O(d \log_d N)\)
Links to this page
#data-structure #heap