InterviewSolution
Saved Bookmarks
| 1. |
What Is A Circular Linked List? |
|
Answer» In the last node of a singly LINEAR list, the link field often CONTAINS a null REFERENCE. A less COMMON convention is to make the last node to POINT to the first node of the list; in this case the list is said to be ‘circular’ or ‘circularly linked’. In the last node of a singly linear list, the link field often contains a null reference. A less common convention is to make the last node to point to the first node of the list; in this case the list is said to be ‘circular’ or ‘circularly linked’. |
|