InterviewSolution
Saved Bookmarks
| 1. |
What kind of linked list is best to answer questions like “What is the item at position n?”(a) Singly linked list(b) Doubly linked list(c) Circular linked list(d) Array implementation of linked listMy question is from Singly Linked List Operations in section Abstract Data Types of Data Structures & Algorithms II had been asked this question in an online interview. |
|
Answer» Right option is (d) Array implementation of linked LIST |
|