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>.Max se usa para obtener el valor máximo en el SortedSet que 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.Max
Aquí, mySet es un SortedSet.
Valor devuelto: el valor máximo en SortedSet.
Ejemplo 1:
// C# code to get the maximum 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 maximum value in the SortedSet Console.WriteLine("The maximum element in SortedSet is : " + mySet.Max); } }
Producción:
The maximum element in SortedSet is : 9
Ejemplo 2:
// C# code to get the maximum 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 maximum value in the SortedSet Console.WriteLine("The maximum element in SortedSet is : " + mySet.Max); } }
Producción:
The maximum element in SortedSet is : F
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