What is the meaning of traversing in link list?
Answers
Answered by
0
Traversing linked list means visiting each and every node of the Singly linked list. Following steps are involved while traversing the singly linked list – Firstly move to the first node. Fetch the data from the node and perform the operations such as arithmetic operation or any operation depending on data type.
Similar questions