I need to run through a List in reverse order using Java.

So where this does it forwards:

for(String string: stringList){
//...do something
}

Is there some way to iterate the stringList in reverse order using the for each syntax?

For clarity: I know how to iterate a list in reverse order but would like to know (for curiosity's sake ) how to do it in the for each style.

link|improve this question

Funnily enough, I read this question partway through reading the section of the Scala book that deals with immutable list operations... a nice demonstration of the lack of expressive power in java. – skaffman Jul 8 '09 at 13:37
3  
The point of the "for-each" loop is that you just need to perform an operation on each element, and order is not important. For-each could process the elements in completely random order, and it would still be doing what it was designed for. If you need to process the elements in a particular way, I would suggest doing it manually. – muusbolla Jul 8 '09 at 13:46
Java collections library. Not really anything to do with the language. Blame Josh Bloch. – Tom Hawtin - tackline Jul 8 '09 at 13:50
1  
@muusbolla: But as a List is an ordered collection, surely its order will be honoured, regardless? Therefore for-each will not process the elements of a List in a random order. – Lee Kowalkowski Mar 22 '11 at 14:56
feedback

10 Answers

up vote 23 down vote accepted

The Collections.reverse method actually returns a new list with the elements of the original list copied into it in reverse order, so this has O(n) performance with regards to the size of the original list.

As a more efficient solution, you could write a decorator that presents a reversed view of a List as an Iterable. The iterator returned by your decorator would use the ListIterator of the decorated list to walk over the elements in reverse order.

For example:

public class Reversed<T> implements Iterable<T> {
    private final List<T> original;

    public Reversed(List<T> original) {
        this.original = original;
    }

    public Iterator<T> iterator() {
        final ListIterator<T> i = original.listIterator(original.size());

        return new Iterator<T>() {
            public boolean hasNext() { return i.hasPrevious(); }
            public T next() { return i.previous(); }
            public void remove() { i.remove(); }
        };
    }

    public static Reversed<T> reversed(List<T> original) {
        return new Reversed<T>(original);
    }
}

And you would use it like:

import static Reversed.reversed;

...

List<String> someStrings = getSomeStrings();
for (String s : reversed(someStrings)) {
    doSomethingWith(s);
}
link|improve this answer
4  
That's basically what Google's Iterables.reverse does, yes :) – Jon Skeet Jul 8 '09 at 13:50
1  
I know there is a 'rule' that we have to accept Jon's answer :) but.. I want to accept this one (even though they are essentially the same) because it does not require me to include another 3rd party library (even though some could argue that that reason breaks one of the prime advantages of OO - reusability). – Ron Tuffin Jul 8 '09 at 14:21
Small error: In public void remove(), there should not be a return statement, it should be just: i.remove(); – Jesper Aug 13 '09 at 9:43
Thanks. I've corrected it. – Nat Aug 13 '09 at 9:45
Collections.reverse() does NOT return a reversed copy but acts on the List passed to it as a parameter. Like your solution with the iterator, though. Really elegant. – er4z0r May 9 at 19:42
feedback

For a list, you could use the Google Collections Library:

for (String item : Iterables.reverse(stringList))
{
    // ...
}

Note that this doesn't reverse the whole collection, or do anything like it - it just iterates in the reverse order. This is more efficient than reversing the collection first.

To reverse an arbitrary iterable, you'd have to read it all and then "replay" it backwards.

(If you're not already using it, I'd thoroughly recommend you have a look at the GCL. It's great stuff.)

link|improve this answer
Our codebase makes heavy use of the generified version of Commons Collections released by larvalabs (larvalabs.com/collections). Looking through the SVN repo for Apache Commons, it's clear that most of the work in releasing a java 5 version of Commons Collections is done, they just haven't released it yet. – skaffman Jul 8 '09 at 13:44
I like it. If it weren't so useful, I'd call that a plug. – geowa4 Jul 8 '09 at 13:47
I wonder why Jakarta never bothered to update Apache Commons. – Uri Jul 8 '09 at 13:55
1  
They have updated it, that's what I'm saying. They just haven't released it. – skaffman Jul 8 '09 at 13:56
1  
Iterables.reverse has been deprecated, use Lists.reverse or ImmutableList.reverse instead. – Garrett Hall Oct 18 '11 at 14:54
feedback

AFAIK there isn't a standard "reverse_iterator" sort of thing in the standard library that supports the for-each syntax which is already a syntactic sugar they brought late into the language.

You could do something like for(Item element: myList.clone().reverse()) and pay the associated price.

This also seems fairly consistent with the apparent phenomenon of not giving you convenient ways to do expensive operations - since a list, by definition, could have O(N) random access complexity (you could implement the interface with a single-link), reverse iteration could end up being O(N^2). Of course, if you have an ArrayList, you don't pay that price.

link|improve this answer
You can run a ListIterator backwards, which can be wrapped up within an Iterator. – Tom Hawtin - tackline Jul 8 '09 at 13:52
@Tom: Good point. However, with the iterator you are still doing the annoying old-style for loops, and you may still pay the cost to get to the last element to begin with... I added the qualifier in my answer, though, thanks. – Uri Jul 8 '09 at 14:01
Deque has a reverse iterator. – Michael Munsey Apr 27 '10 at 22:40
feedback

This will mess with the original list and also needs to be called outside of the loop. Also you don't want to perform a reverse every time you loop - would that be true if one of the Iterables.reverse ideas was applied?

Collections.reverse(stringList);

for(String string: stringList){
//...do something
}
link|improve this answer
feedback

Not without writing some custom code which will give you an enumerator which will reverse the elements for you.

You should be able to do it in Java by creating a custom implementation of Iterable which will return the elements in reverse order.

Then, you would instantiate the wrapper (or call the method, what-have-you) which would return the Iterable implementation which reverses the element in the for each loop.

link|improve this answer
feedback

You can use the Collections class http://java.sun.com/j2se/1.4.2/docs/api/java/util/Collections.html to reverse the list then loop.

link|improve this answer
feedback

You'd need to reverse your collection if you want to use the for each syntax out of the box and go in reverse order.

link|improve this answer
feedback

The List (unlike the Set) is an ordered collection and iterating over it does preserve the order by contract. I would have expected a Stack to iterate in the reverse order but unfortunately it doesn't. So the simplest solution I can think of is this:

for (int i = stack.size() - 1; i >= 0; i--) {
    System.out.println(stack.get(i));
}

I realize that this is not a "for each" loop solution. I'd rather use the for loop than introducing a new library like the Google Collections.

Collections.reverse() also does the job but it updates the list as opposed to returning a copy in reverse order.

link|improve this answer
This approach may be fine for array based lists (such as ArrayList) but it would be sub-optimal for Linked Lists as each get would have to traverse the list from beginning to end (or possibly end to beginning) for each get. It is better to use a smarter iterator as in Nat's solution (optimal for all implementations of List). – Chris May 20 '11 at 17:54
Further, it strays from the request in the OP which explicitly asks for the for each syntax – Paul W May 21 '11 at 2:51
feedback

This may be an option. Hope there is a better way to start from last element than to while loop to the end.

public static void main(String[] args) {        
    List<String> a = new ArrayList<String>();
    a.add("1");a.add("2");a.add("3");a.add("4");a.add("5");

    ListIterator<String> aIter=a.listIterator();        
    while(aIter.hasNext()) aIter.next();

    for (;aIter.hasPrevious();)
    {
        String aVal = aIter.previous();
        System.out.println(aVal);           
    }
}
link|improve this answer
feedback

My blog post shows a very very similar to the current top answer but uses an anonymous implementation of Iterable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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