Método NavigableMap lowerEntry() en Java

El método lowerEntry() de la interfaz NavigableMap en Java se usa para devolver un mapeo de clave-valor asociado con la clave mayor estrictamente menor que la clave dada, o nulo si no existe tal clave.

Sintaxis :

Map.Entry< K, V > lowerEntry(K key)

Donde, K es el tipo de clave mantenida por este mapa y V es el tipo de valores asignados a las claves.

Parámetros : esta función acepta una sola clave de parámetro que se refiere al tipo de clave que mantiene este contenedor de mapas.

Valor devuelto : Devuelve un mapeo de clave-valor asociado con la clave más grande estrictamente menor que la clave dada, o nulo si no existe tal clave.

Los siguientes programas ilustran el método lowerEntry() en Java:

Programa 1 : Cuando la clave es entera.

// Java code to demonstrate the working of
// lowerEntry() 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> nmmp = new TreeMap<>();
  
        // assigning the values in the NavigableMap
        // using put()
        nmmp.put(2, "two");
        nmmp.put(7, "seven");
        nmmp.put(3, "three");
  
        System.out.println("The mapping with greatest key strictly"
                           + " less than 7 is : " + nmmp.lowerEntry(7));
    }
}
Producción:

The mapping with greatest key strictly less than 7 is : 3=three

Programa 2 : Cuando la clave es una string.

// Java code to demonstrate the working of
// lowerEntry() 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");
  
        System.out.println("The mapping with greatest key strictly"
                           + " less than 7 is : " + tmmp.lowerEntry("two"));
    }
}
Producción:

The mapping with greatest key strictly less than 7 is : six=seven

Referencia : https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#lowerEntry(K)

Publicación traducida automáticamente

Artículo escrito por barykrg y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *