-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigableMap13.java
More file actions
23 lines (21 loc) · 866 Bytes
/
NavigableMap13.java
File metadata and controls
23 lines (21 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.NavigableMap;
import java.util.TreeMap;
public class NavigableMap13 {
// lowerKey
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("lowerKey:" + map.lowerKey(3.0f));
// i.e. if less than 3.4f then it returns Key:2.6f (LowerKey)
System.out.println("lowerKey:" + map.lowerKey(4.3f));
// i.e. if equal to 4.3f then it returns Key:3.4f (LowerKey)
System.out.println("lowerKey:" + map.lowerKey(1.8f));
// i.e. if equal to 1.8f then it returns null -- No LowerKey
}
}