InterviewSolution
Saved Bookmarks
| 1. |
In linked list implementation of a queue, from where is the item deleted?(a) At the head of link list(b) At the centre position in the link list(c) At the tail of the link list(d) Node before the tailOrigin of the question is Queue using Linked List topic in section Abstract Data Types of Data Structures & Algorithms II had been asked this question during an internship interview. |
|
Answer» Correct ANSWER is (a) At the head of link list |
|