How to reverse a collection?
SolutionFollowing example demonstratres how to reverse a collection with the help of listIterator() and Collection.reverse() methods of Collection and Listiterator class.
import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.ListIterator; public class UtilDemo3 { public static void main(String[] args) { String[] coins = { "A", "B", "C", "D", "E" }; List l = new ArrayList(); for (int i = 0; i < coins.length; i++)l.add(coins[i]); ListIterator liter = l.listIterator(); System.out.println("Before reversal"); while (liter.hasNext())System.out.println(liter.next()); Collections.reverse(l); liter = l.listIterator(); System.out.println("After reversal"); while (liter.hasNext())System.out.println(liter.next()); } }Result
The above code sample will produce the following result.
Before reversal A B C D E After reversal E D C B A
java_collections.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4