πŸ“Š Data Structure and Algorithms (DSA)
Q. A variation of linked list is circular linked list, in which the last node in the list points to first node of the list. One problem with this type of list is?
  • (A) it waste memory space since the pointer head already points to the first node and thus the list node does not need to point to the first node.
  • (B) it is not possible to add a node at the end of the list.
  • (C) it is difficult to traverse the list as the pointer of the last node is now not null
  • (D) all of above
πŸ’¬ Discuss
βœ… Correct Answer: (C) it is difficult to traverse the list as the pointer of the last node is now not null

You must be Logged in to update hint/solution

πŸ’¬ Discussion

πŸ“Š Question Analytics

πŸ‘οΈ
117
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
86%
Success Rate