-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigableMap12.java
More file actions
23 lines (21 loc) · 918 Bytes
/
NavigableMap12.java
File metadata and controls
23 lines (21 loc) · 918 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 NavigableMap12 {
// lowerEntry
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("lowerEntry:" + map.lowerEntry(3.0f));
// i.e. if less than 3.4f then it returns Key:2.6f and its Value:9 (LowerEntry)
System.out.println("lowerEntry:" + map.lowerEntry(4.3f));
// i.e. if equal to 4.3f then it returns Key:3.4f and its Value:78 (LowerEntry)
System.out.println("lowerEntry:" + map.lowerEntry(1.8f));
// i.e. if equal to 1.8f then it returns null -- No LowerEntry
}
}