Insertion and Deletion in Heaps in Data Sturcture

Here we will see how to insert and delete elements from binary heap data structures. Suppose the initial tree is like below −

Insertion Algorithm

insert(heap, n, item):
Begin
   if heap is full, then exit
   else
      n := n + 1
      for i := n, i > 1, set i := i / 2 in each iteration, do
         if item 

Example

Suppose we want to insert 30 into the heap −


Deletion Algorithm

delete(heap, n):
Begin
   if heap is empty, then exit
   else
      item := heap[1]
      last := heap[n]
      n := n – 1
      for i := 1, j := 2, j = heap[j], then break
         heap[i] := heap[j]
      done
   end if
   heap[i] := last
End

Example

Suppose we want to delete 30 from the final heap −

Updated on: 2020-08-10T08:59:32+05:30

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements