Método inmutable TreeSet min() de Scala

En la clase TreeSet inmutable de Scala, el método min() se utiliza para devolver el elemento más pequeño del TreeSet.

Definición del método: def min: A

Tipo de retorno: Devuelve el elemento más pequeño del TreeSet.

Ejemplo 1:

// Scala program of min() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying min method  
        val result = q1.min  
            
        // Displays output  
        print("Smallest element in the TreeSet: " + result) 
          
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5)
Smallest element in the TreeSet: 1

Ejemplo #2:

// Scala program of min() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet("u", "a", "i", "o", "e")  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying min method  
        val result = q1.min  
            
        // Displays output  
        print("Smallest element in the TreeSet: " + result) 
          
    } 
} 
Producción:

TreeSet(a, e, i, o, u)
Smallest element in the TreeSet: a

Publicación traducida automáticamente

Artículo escrito por Shivam_k 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 *