import java.util.*; public class exampleCollection { public static void main(String[] a) { LinkedList cs = new LinkedList(); // code to add elements cs.add( "hello" ); cs.add( "there" ); cs.add( "everybody" ); ListIterator li = cs.listIterator( cs.size() ); while( li.hasPrevious() ) { String s = li.previous(); System.out.println(s); } } }