Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to traverse a LinkedList a number of times, in a way that suggests using ListIterator.

Is there a way to reset a ListIterator? or is it better to just create a new one? (and what if I can't because I don't have access to the list?)

edit: and is there a way to create a ListIterator that points to the end of the list? (so that hasNext() is false but I can use previous() or hasPrevious())

share|improve this question

4 Answers

Create a new LinkedList based on the obtained ListIterator, so that you can get as many iterators from it as you want.

Edit: as to your second question which you edited in afterwards, consider doing a Collections#reverse() on the list first.

share|improve this answer
ick, I can't reverse the list. phooey. seems like Java's iterators aren't as nice as C's STL iterators. – Jason S Jan 27 '10 at 16:44

If you can just create new one that is probably your best bet.

If you cannot, as you are going through the list iterator, add each element to a new list. Use that new list to create the listIterator next time you need it.

share|improve this answer

When it comes to performance, it's probably faster to create a new iterator. If you don't have the list, you can still use hasPrevious() and previous() to move backwards until you've placed the iterator at the beginning of the list. Depending on the list implementation, you may experience a relevant performance impact navigating backwards through the iterator.

share|improve this answer

Looks like AbstractList.listIterator(int initialPos) is what I want to use for an ArrayList, and LinkedList.descendingIterator() is what I want to use for a LinkedList, but there doesn't appear to be a single method that would apply efficiently to both, and descendingIterator() returns an Iterator, not a ListIterator. drat.

import java.util.AbstractList;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;

public class ListIteratorTest {
    static public void populate(List<Integer> list)
    {
        for (int i = 0; i < 10; ++i)
        {
            list.add(i*i);
        }       
    }
    static public void main(String[] args)
    {
        AbstractList<Integer> list = new ArrayList<Integer>();
        populate(list);

        ListIterator<Integer> it;       
        System.out.println("List going forwards:");
        it = list.listIterator();
        while (it.hasNext())
            System.out.println(it.next());

        System.out.println("List going backwards:");
        it = list.listIterator(list.size());
        while (it.hasPrevious())
            System.out.println(it.previous());

        LinkedList<Integer> list2 = new LinkedList<Integer>();
        populate(list2);
        System.out.println("List going forwards:");
        it = list2.listIterator();
        while (it.hasNext())
            System.out.println(it.next());

        System.out.println("List going backwards:");
        Iterator<Integer> it2 = list2.descendingIterator();
        while (it2.hasNext())
            System.out.println(it2.next());

    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.