GATE 2019
October 3, 2023Engineering-Mathematics
October 3, 2023 Question 12 |
Consider the following piece of ‘C’ code fragment that removes duplicates from an ordered list of integers.
Node *remove-duplicates(Node *head, int *j) { Node *t1, *t2; *j=0; t1 = head; if (t1! = NULL) t2 = t1 →next; else return head; *j = 1; if(t2 == NULL) return head; while t2 != NULL) { if (t1.val != t2.val) --------------------------→ (S1) { (*j)++; t1 → next = t2; t1 = t2: ----------→ (S2) } t2 = t2 → next; } t1 → next = NULL; return head; }
Assume the list contains n elements (n≥2) in the following questions.
(a) How many times is the comparison in statement S1 made?
(b) What is the minimum and the maximum number of times statements marked S2 get executed?
(c) What is the significance of the value in the integer pointed to by j when the function completes?
Theory Explanation. |
Correct Answer: A
Subscribe
Login
0 Comments