Which types of linked list does not store null in next field?
Answers
Answered by
2
single link to the right place for you
Answered by
0
Circular linked lists the linked list that contains a value in all fields. It does not support the null value.
- A linked list is the collection of data structures that all have connections via a link.
- These data structures are arranged in a linear way.
- The circular linked list is arranged in a round pattern.
- The last field is connected to the first field in the circular linked list.
- The circular linked list does not support a null value.
Similar questions