DATA STRUCTURES



Admission Enquiry Form

Traversing in the linked list.

Traversing in linked list means to visit each and every element of the linked list.

traversing in the linked list by compuhelp




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