2015-04-20 15:36:01 -07:00
|
|
|
|
//: containers/SortedSetDemo.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
// What you can do with a TreeSet.
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import static net.mindview.util.Print.*;
|
|
|
|
|
|
|
|
|
|
public class SortedSetDemo {
|
|
|
|
|
public static void main(String[] args) {
|
2015-05-05 11:20:13 -07:00
|
|
|
|
SortedSet<String> sortedSet = new TreeSet<>();
|
2015-04-20 15:36:01 -07:00
|
|
|
|
Collections.addAll(sortedSet,
|
|
|
|
|
"one two three four five six seven eight"
|
|
|
|
|
.split(" "));
|
|
|
|
|
print(sortedSet);
|
|
|
|
|
String low = sortedSet.first();
|
|
|
|
|
String high = sortedSet.last();
|
|
|
|
|
print(low);
|
|
|
|
|
print(high);
|
|
|
|
|
Iterator<String> it = sortedSet.iterator();
|
|
|
|
|
for(int i = 0; i <= 6; i++) {
|
|
|
|
|
if(i == 3) low = it.next();
|
|
|
|
|
if(i == 6) high = it.next();
|
|
|
|
|
else it.next();
|
|
|
|
|
}
|
|
|
|
|
print(low);
|
|
|
|
|
print(high);
|
|
|
|
|
print(sortedSet.subSet(low, high));
|
|
|
|
|
print(sortedSet.headSet(high));
|
|
|
|
|
print(sortedSet.tailSet(low));
|
|
|
|
|
}
|
|
|
|
|
} /* Output:
|
|
|
|
|
[eight, five, four, one, seven, six, three, two]
|
|
|
|
|
eight
|
|
|
|
|
two
|
|
|
|
|
one
|
|
|
|
|
two
|
|
|
|
|
[one, seven, six, three]
|
|
|
|
|
[eight, five, four, one, seven, six, three]
|
|
|
|
|
[one, seven, six, three, two]
|
|
|
|
|
*///:~
|