Java List Sorting

Java Sort a List

In the previous chapters, you learned how to use two popular lists in Java: ArrayList and LinkedList, which are found in the java.util package.

Another useful class in the java.util package is the Collections class, which include the sort() method for sorting lists alphabetically or numerically.


Continue reading Java List Sorting