Question: Insert node 13 in the following red-black tree using the given RB_insert function. Show all the transformations necessary (with explanations from the code) and show

Insert node 13 in the following red-black tree using the given RB_insert function. Show all the transformations necessary (with explanations from the code) and show the changes in the tree after each transformation. (z pointer shows the node to be inserted.) 12 RB-INSERT(T. 2) TREE-INSERT (T. 2) z.color = RED 1 while 2+T root and 2.p.color == RED 2 if 2.p == z.p.p.left y = z.p.p.right if y.color == RED z.p.color = BLACK 6 y.color = BLACK 7 z.p.p.color = RED 8 z = z.p.p 9 else 10 if 2 -- z.p.right 11 z = 2.P 12 LEFT-ROTATE(T. 2) 13 RIGHT-ROTATE(T. 2.p.p) else (same as then clause 14 with "right" and "left" exchanged) 15 T.root.color = BLACK // case 1 Il case 1 // case 1 Il case 1 Il case 2 Il case 2 Il case 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
