-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreeMap.java
50 lines (39 loc) · 1.59 KB
/
TreeMap.java
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
class TreeMap1 {
public static void main(String[] args) throws Exception {
TreeMap<Integer, String> tree_map = new TreeMap<>();
tree_map.put(1, "one");
tree_map.put(2, "two");
tree_map.put(3, "three");
tree_map.put(4, "four");
tree_map.put(5, "five");
tree_map.put(6, "six");
tree_map.put(7, "seven");
tree_map.put(8, "eight");
tree_map.put(9, "nine");
tree_map.put(10, "ten");
System.out.println("TreeMap: " + tree_map);
System.out.println(" ");
Set<Map.Entry<Integer, String>> s = tree_map.entrySet();
System.out.println("Set: " + s);
System.out.println(" ");
for (Map.Entry<Integer, String> e:s) {
System.out.println(e.getKey() + " " + e.getValue());
e.setValue("My Value");
System.out.println(e.getKey() + " " + e.getValue());
}
System.out.println("Set: " + s);
// Unsopported Operation Exception
Map.Entry<Integer, String> f = tree_map.firstEntry();
System.out.println("First Entry: " + f);
Map.Entry<Integer, String> f1 = tree_map.lastEntry();
System.out.println("Last Entry: " + f1);
System.out.println(" " );
f.setValue("My Value");
System.out.println("After Change First Entry: " + f);
f.setValue("My Value");
System.out.println("After Change Last Entry: " + f1);
}
}