0
62kviews
State differences between singly linked list and doubly linked list data structures along with their applications.
1 Answer
| written 9.4 years ago by |
| Singly linked list | Doubly linked list |
|---|---|
| A singly linked list is a linked list where the node contains some data and a pointer to the next node in the list | A doubly linked list is complex type of linked list where the node contains some data and a pointer to … |