Friday, 25 January 2013

Algorithm for Traversal of a Linked List

ALGORITHM NAME: TRAVERSAL_LL(START)


1.start
2.temp=start
3.while temp!=NULL,do
                1.Process of temp->data
                2.temp=temp->link
4.End while
5.stop

No comments:

Post a Comment