Saved Bookmarks
| 1. |
Explain the memory representation of single linked list. |
|
Answer» A linked list maintains the memory location of each item in the list by using a series of ‘pointers’ within the data structure. Every node of a singly-linked list contains the following information:
A number of pointers are required, these are:
|
|