Follow

Translate

Thursday, March 17, 2016

TRAVERSING A LINKED LIST

TRAVERSING A LINKED LIST:   Let List be a linked list in memory stored in linear arrays INFO and LINK with START pointing to the first element and NULL indicating the end of LIST. Suppose we want to traverse LIST in order to process each node exactly once. This section presents an algorithm that does so and then uses the algorithm in some applications.

Our traversing algorithm uses a pointer variable PTR which points to the node that is currently being processed. Accordingly, LINK[PTR] points to the next node to be processed.


                    PTR : = LINK[PTR]



Initialize PTR or START. Then process INFO[PTR], the information at the first node.
Update PTR by the assignment PTR : = LINK[PTR]
PTR points at the second node. Then process INFO[PTR], the information at the second node.
Update PTR by the assignment PTR : = LINK[PTR], and 
Then process INFO[PTR], the information at the third node.
Continue until PTR = NULL, which signals the end of the list.

If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • Traversing Binary Tree Traversing Binary Tree: There are three standard ways of traversing a binary tree T with root R. These three algorithms, called preorder, inorder and postorder. Preorder:         &n… Read More
  • FACTORIAL(FACT, N) Procedure A: FACTORIAL(FACT, N) This procedure calculate N! and returns the value in the variable FACT. 1.  If N = 0, then:Set FACT : = 1, and return. 2.  Set FACT : = 1. [Initializes FACT for loo.] 3.  Re… Read More
  • FIBONACCI(FIB, N) FIBONACCI(FIB, N) This procedure calculates FN and returns the value in the first parameter FIB. 1.  If N = 0 or N = 1, then : Set FIB : = N, and return. 2. Call FIBONACCI(FIBA, N-2). 3. Call FIBONACCI(FIBB, N-1… Read More
  • Example Of Factorial Function Example Of Factorial Function:    n! = 1.2.3...............(n-2)(n-1)n 0! = 1             1! = 1         2! = 1.2 = 2     &… Read More
  • What is Recursion? Recursion:   A recursive must have two proprties (a)  There must be certain criteria, called base criteria, for which the procedure does not call itself. (b)  Each time the procedure does call itself (di… Read More

0 comments:

Post a Comment