NavigableMap método de entrada superior() en Java

El método highEntry() de la interfaz NavigableMap en Java se usa para devolver una asignación de clave-valor asociada con la clave mínima estrictamente mayor que la clave dada, o nula si no existe tal clave.

Sintaxis :

Map.Entry< K, V > higherEntry(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 clave-valor asociado con la clave mínima estrictamente mayor que la clave dada, o nulo si no existe tal clave.

Los siguientes programas ilustran el método de entrada superior() en Java:

Programa 1 : Cuando la clave es entera.

// Java code to demonstrate the working of
// higherEntry() 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 least key is : "
                           + nmmp.higherEntry(2));
    }
}
Producción:

The mapping with least key is : 3=three

Programa 2 : Cuando la clave es una string.

// Java code to demonstrate the working of
// higherEntry() 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 associated with the least key is : "
                           + tmmp.higherEntry("one"));
    }
}
Producción:

The mapping associated with the least key is : six=seven

Referencia : https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#higherEntry(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 *