InterviewSolution
Saved Bookmarks
| 1. |
3. Explain single linked it with insertendelele...algorith |
|
Answer» A singly linked list is a type of linked list that is unidirectional, that is, it can be traversed in only one DIRECTION from head to the last node (tail). Each ELEMENT is a linked list is called a node. A SINGLE node contains data and a pointer to the next node which helps in maintaining the STRUCTURE of the list. HOPE IT HELPS THANKS FOR WATCHING |
|