Question
Which segment of the code..
Which segment of code inserts a new node (pointed to by pointer X) at the beginning of a single linked list las defined in 0121? The start pointer points to the begining of the it start-> next-X:X = start; X-> next-start; start-X-> next; X-> next-start-> next start = X: O x-> next- start; start X Question 14 Which segment of code inserts a new node (pointed to by pointer X) at any position (i.e neither first nor last) of a single linked list? Assume prev pointer points to the previous position of the new node. X-> next = prev: prev-> next-X; O x->next - prev-> next: prev-> next X O X prev next; prev next-X> next: X-> next-prev-> next prev . > next-X ) next
Explanation / Answer
Hi,
Below is the answer-
Ans 13 - X -> next=start; start=X;
Ans 14 - X -> next=prev -> next ; prev -> next=X