Which type of link list does not 1
store NULL in the next field? *
Answers
Answered by
0
Explanation:
In a single linked list, every node has link to its next node in the sequence. So, we can traverse from one node to other node only in one direction and we can not traverse back. We can solve this kind of problem by using double linked list.
Similar questions