Java: Get the greatest key less than or equal to the given key
12. Get Floor Key in TreeMap
Write a Java program to get the greatest key less than or equal to the given key.
Sample Solution:-
Java Code:
import java.util.*;
import java.util.Map.Entry;  
public class Example12 {  
      public static void main(String args[]) {
  // Create a tree map
  TreeMap < Integer, String > tree_map1 = new TreeMap < Integer, String > ();
  // Put elements to the map 
  tree_map1.put(10, "Red");
  tree_map1.put(20, "Green");
  tree_map1.put(40, "Black");
  tree_map1.put(50, "White");
  tree_map1.put(60, "Pink");
  System.out.println("Orginal TreeMap content: " + tree_map1);
  System.out.println("Checking the entry for 10: ");
  System.out.println("Key is: " + tree_map1.floorKey(10));
  System.out.println("Checking the entry for 30: ");
  System.out.println("Key is: " + tree_map1.floorKey(30));
  System.out.println("Checking the entry for 70: ");
  System.out.println("Key is: " + tree_map1.floorKey(70));
 }
}
Sample Output:
Orginal TreeMap content: {10=Red, 20=Green, 40=Black, 50=White, 60=Pink
}                                                                      
Checking the entry for 10:                                             
Key is: 10                                                             
Checking the entry for 30:                                             
Key is: 20                                                             
Checking the entry for 70:                                             
Key is: 60
For more Practice: Solve these Related Problems:
- Write a Java program to use floorKey() to retrieve the greatest key less than or equal to a specified value.
- Write a Java program to implement a lambda expression that finds the greatest key ≤ a given number using streams.
- Write a Java program to compare the output of floorKey() with a custom iterative search of the TreeMap’s key set.
- Write a Java program to handle cases when floorKey() returns null and print an appropriate message.
Go to:
PREV : Get Mapping with Floor Key.
NEXT : Get Head Map with Keys Less Than Given Key.
Java Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
