forked from learning-zone/java-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollectionSort.java
More file actions
29 lines (26 loc) · 635 Bytes
/
CollectionSort.java
File metadata and controls
29 lines (26 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package misc;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
/**
* Java Program to Sort a List using Collections.Sort methods
* This implementation uses merge sort.
*
*/
public class CollectionSort {
public static void main(String[] args) {
List<String> list = new ArrayList<>();
list.add("India");
list.add("India");
list.add("United States");
list.add("Malaysia");
list.add("Australia");
list.add("Lundon");
Collections.sort(list);
Iterator<String> itr = list.iterator();
while(itr.hasNext()) {
System.out.println(itr.next());
}
}
}