Vidyalelo
Data Structure · Q98

Heaps

Programming · Data Structure · question 98

Q98

What is wrong with the following code of insertion in fibonacci heap. Choose the correct option FIB-INSERT(H, x) degree[x]= 0 p[x]= NIL child[x] =NIL left[x] =x right[x] =x mark[x] =FALSE concatenate the root list containing x with root list H if min[H] = NIL or key[x] > key[min[H]] then min[H]= x n[H]= n[H] + 1

A.
Line -11
B.
Line -3
C.
Line 9
Answer
D.
Line 7

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board