La clase SortedSet representa la colección de objetos ordenados. Esta clase viene bajo el espacio de nombres System.Collections.Generic . La propiedad SortedSet<T>.Min se usa para obtener el valor mínimo en SortedSet<T>, según lo define el comparador.
Propiedades:
- En C#, la clase SortedSet se puede usar para almacenar, eliminar o ver elementos.
- Mantiene el orden ascendente y no almacena elementos duplicados.
- Se sugiere usar la clase SortedSet si tiene que almacenar elementos únicos y mantener un orden ascendente.
Sintaxis:
mySet.Min
Aquí, mySet es el objeto de SortedSet.
Valor devuelto : Valor mínimo en el SortedSet.
Los siguientes programas ilustran el uso de SortedSet<T>.Min Property :
Ejemplo 1:
// C# code to get the minimum value // in the SortedSet using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedSet of integers SortedSet<int> mySet = new SortedSet<int>(); // Inserting elements into SortedSet for (int i = 0; i < 10; i++) { mySet.Add(i); } // Displaying the minimum value in the SortedSet Console.WriteLine("The minimum element in SortedSet is : " + mySet.Min); } }
Producción:
The minimum element in SortedSet is : 0
Ejemplo 2:
// C# code to get the minimum value // in the SortedSet using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedSet of strings SortedSet<string> mySet = new SortedSet<string>(); // Inserting elements into SortedSet mySet.Add("A"); mySet.Add("B"); mySet.Add("C"); mySet.Add("D"); mySet.Add("E"); mySet.Add("F"); // Displaying the minimum value in the SortedSet Console.WriteLine("The minimum element in SortedSet is : " + mySet.Min); } }
Producción:
The minimum element in SortedSet is : A
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA