El método ceilingKey() de la interfaz NavigableMap en Java se usa para devolver la clave mínima mayor o igual que la clave dada, o nulo si no existe tal clave.
Sintaxis :
K ceilingKey(K key)
Donde, K es el tipo de Clave mantenida por este contenedor de mapas.
Parámetros : Acepta un único parámetro Key que es la clave a mapear y es del tipo de clave aceptada por esta colección.
Valor devuelto : Devuelve la clave mínima mayor o igual a la clave dada, o nulo si no existe tal clave.
Los siguientes programas ilustran el método ceilingKey() en Java:
Programa 1 : Cuando la clave es entera.
// Java code to demonstrate the working of // ceilingKey() method import java.io.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the NavigableMap of Integer and String NavigableMap<Integer, String> tmmp = new TreeMap<>(); // assigning the values in the NavigableMap // using put() tmmp.put(2, "two"); tmmp.put(7, "seven"); tmmp.put(3, "three"); // Use of ceilingKey() // returns 7( next greater key) System.out.println("The next greater key of 6 is : " + tmmp.ceilingKey(6)); // returns "null" as no value present // greater than or equal to number System.out.println("The next greater key of 3 is : " + tmmp.ceilingKey(3)); } }
Producción:
The next greater key of 6 is : 7 The next greater key of 3 is : 3
Programa 2 : Cuando la clave es una string.
// Java code to demonstrate the working of // ceilingKey() method import java.io.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the NavigableMap of Integer and String NavigableMap<String, String> tmmp = new TreeMap<>(); // assigning the values in the NavigableMap // using put() tmmp.put("one", "two"); tmmp.put("six", "seven"); tmmp.put("two", "three"); // Use of ceilingKey() // returns 7( next greater key) System.out.println("The next greater key of five is : " + tmmp.ceilingKey("five")); // returns "null" as no value present // greater than or equal to number System.out.println("The next greater key of six is : " + tmmp.ceilingKey("six")); } }
Producción:
The next greater key of five is : one The next greater key of six is : six
Referencia : https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#ceilingKey(K)