La clase SortedSet representa la colección de objetos ordenados. Esta clase viene bajo el espacio de nombres System.Collections.Generic . El método SortedSet<T>.GetViewBetween(T, T) se usa para devolver una vista de un subconjunto en un SortedSet<T>.
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: public virtual System.Collections.Generic.SortedSet< T > GetViewBetween (T lowerValue, T upperValue);
Parámetros:
lowerValue: El valor deseado más bajo en la vista.
upperValue: el valor deseado más alto en la vista.Valor devuelto: una vista de subconjunto que contiene solo los valores en el rango especificado.
Excepciones:
- ArgumentException: si lowerValue es mayor que upperValue según el comparador.
- ArgumentOutOfRangeException: una operación probada en la vista estaba fuera del rango especificado por lowerValue y upperValue .
Ejemplo 1:
// C# code to get the subset of a SortedSet using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedSet of strings SortedSet<string> mySet1 = new SortedSet<string>(); // Inserting elements in SortedSet mySet1.Add("A"); mySet1.Add("B"); mySet1.Add("C"); mySet1.Add("D"); mySet1.Add("E"); mySet1.Add("F"); mySet1.Add("G"); mySet1.Add("H"); mySet1.Add("I"); // Get the subset between "C" and "G" SortedSet<string> mySet2 = mySet1.GetViewBetween("C", "G"); // Displaying the elements in the subset foreach(string str in mySet2) { Console.WriteLine(str); } } }
C D E F G
Ejemplo 2:
// C# code to get the subset of a SortedSet using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedSet of integers SortedSet<int> mySet1 = new SortedSet<int>(); // Inserting elements in SortedSet for (int i = 0; i < 10; i++) { mySet1.Add(i); } // Get the subset between "3" and "7" SortedSet<int> mySet2 = mySet1.GetViewBetween(3, 7); // Displaying the elements in the subset foreach(int i in mySet2) { Console.WriteLine(i); } } }
3 4 5 6 7
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