...
Question 7969 – GATE 2017 [Set-2]
November 16, 2023
Question 7977 – GATE 2017 [Set-2]
November 16, 2023
Question 7969 – GATE 2017 [Set-2]
November 16, 2023
Question 7977 – GATE 2017 [Set-2]
November 16, 2023

Question 7975 – GATE 2017 [Set-2]

A circular queue has been implemented using a singly linked list where each node consists of a value and a single pointer pointing to the next node. We maintain exactly two external pointers FRONT and REAR pointing to the front node and the rear node of the queue, respectively. Which of the following statements is/are CORRECT for such a circular queue, so that insertion and deletion operations can be performed in O(1) time?
I. Next pointer of front node points to the rear node.
II. Next pointer of rear node points to the front node.

Correct Answer: B

Question 13 Explanation: 
1. Next pointer of front node points to the rear node.
2. Next pointer of rear points to the front node.

So if we consider circular linked list the next of 44 is 11.
If you place pointer on next of front node (11) then to reach 44 (last node), we have to traverse the entire list.
For delete O(1), for insert O(n).
It is clearly known that next pointer of rear node points to the front node.
Hence, only II is true.

A
I only
B
II only
C
Both I and II
D
Neither I nor II
0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
error: Alert: Content selection is disabled!!