Skip to main content
ICT
Lesson AB29 - Linked List
 
Main Previous Next
Title Page >  
Summary >  
Lesson A1 >  
Lesson A2 >  
Lesson A3 >  
Lesson A4 >  
Lesson A5 >  
Lesson A6 >  
Lesson A7 >  
Lesson A8 >  
Lesson A9 >  
Lesson A10 >  
Lesson A11 >  
Lesson A12 >  
Lesson A13 >  
Lesson A14 >  
Lesson A15 >  
Lesson A16 >  
Lesson A17 >  
Lesson A18 >  
Lesson A19 >  
Lesson A20 >  
Lesson A21 >  
Lesson A22 >  
Lesson AB23 >  
Lesson AB24 >  
Lesson AB25 >  
Lesson AB26 >  
Lesson AB27 >  
Lesson AB28 >  
Lesson AB29 >  
Lesson AB30 >  
Lesson AB31 >  
Lesson AB32 >  
Lesson AB33 >  
Vocabulary >  
 

D. Traversing a Linked List - Method printList page 6 of 16

  1. To traverse a list means to start at one end and visit all the nodes. In the case of method printList, the task is to print the value field from each node.

    public class SinglyLinkedList{

      ...
      public void printList(){

        ListNode temp = first; // start at the first node
        while (temp != null) {
          System.out.print(temp.getValue() + " ");
          temp = temp.getNext(); // go to next node
        }
      }
      ...
    }

    1. We need a variable to traverse through the list so temp is created. Because temp is an alias to first, we can use it to traverse the list without altering the reference to the start of the list. The ListNode variable, temp, will contain null when we are done.

    2. Until temp equals null, the while loop will do two steps at each node; print the data field, then advance the temp reference.

    3. The statement, temp = temp.getNext(), is a very important one, this moves temp to the next node.

 

Main Previous Next
Contact
 © ICT 2006, All Rights Reserved.