-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigableMap8.java
More file actions
21 lines (19 loc) · 838 Bytes
/
NavigableMap8.java
File metadata and controls
21 lines (19 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.NavigableMap;
import java.util.TreeMap;
public class NavigableMap8 {
//headMap(K toKey, boolean inclusive)
public static void main(String[] args) throws Exception {
NavigableMap<Float, Integer> map = new TreeMap<>();
map.put(1.8f,11 );
map.put(2.6f, 9);
map.put(3.4f, 78);
map.put(4.3f, 5);
map.put(5.6f, 1);
map.put(6.8f, 3);
System.out.println("Map:" + map);
System.out.println("headMap:" + map.headMap(3.4f, true));
// Returns a view of the portion of this map whose keys are equal to toKey,if inclusive is true.
System.out.println("headMap:" + map.headMap(3.4f, false));
// Returns a view of the portion of this map whose keys are less than toKey,if inclusive is false.
}
}