Saved Bookmarks
| 1. |
Define Circular List? |
|
Answer» In linear list the next field of the last node contain a null POINTER, when a next field in the last node contain a pointer back to the FIRST node it is called CIRCULAR list. ADVANTAGES – From any point in the list it is possible to reach at any other point. In linear list the next field of the last node contain a null pointer, when a next field in the last node contain a pointer back to the first node it is called circular list. Advantages – From any point in the list it is possible to reach at any other point. |
|