Traversing in the linked list.
Traversing in linked list means to visit each and every element of the linked list.
Algorithm of Traversing in linked list.
Step 1:- If START=NULL
Write ”List is Empty” Exit
[End of if]
Step 2:- TEMP :=START
Step 3:- while TEMP !=NULL
Write TEMP->INFO
Set TEMP:=TEMP->NEXT
[End of while]
Step 4: End