InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Singly And Doubly Linked Lists? |
|
Answer» A doubly linked list whose NODES CONTAIN three FIELDS: an integer value and two links to other nodes ONE to point to the previous node and other to point to the next node. Whereas a SINGLY linked list contains points only to the next node. A doubly linked list whose nodes contain three fields: an integer value and two links to other nodes one to point to the previous node and other to point to the next node. Whereas a singly linked list contains points only to the next node. |
|