C# | Agregar elemento a SortedSet – Part 1

La clase SortedSet representa la colección de objetos ordenados. Esta clase viene bajo el espacio de nombres System.Collections.Generic . conjunto ordenadoMétodo .Add(T)se utiliza para agregar un elemento al conjunto y devuelve un valor que especifica si se agregó correctamente o no.

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 bool Add (T item);

Parámetro:

elemento: El elemento que se agrega al conjunto.

Valor devuelto: verdadero si el elemento se agrega al conjunto; de lo contrario, falso .

Ejemplo 1:

// C# code to add element to SortedSet
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of integers
        SortedSet<int> mySortedSet = new SortedSet<int>();
  
        // adding elements in mySortedSet
        for (int i = 2; i < 7; i++) {
            mySortedSet.Add(i * 2);
        }
  
        // Displaying elements in mySortedSet
        foreach(int i in mySortedSet)
        {
            Console.WriteLine(i);
        }
    }
}
Producción:

4
6
8
10
12

Ejemplo 2:

// C# code to add element to SortedSet
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of integers
        SortedSet<int> mySortedSet = new SortedSet<int>();
  
        // adding elements in mySortedSet
        mySortedSet.Add(4);
        mySortedSet.Add(5);
        mySortedSet.Add(6);
  
        // Trying to add some duplicate
        // elements in mySortedSet
        mySortedSet.Add(6);
        mySortedSet.Add(6);
        mySortedSet.Add(6);
        mySortedSet.Add(7);
  
        // Displaying elements in mySortedSet
        foreach(int i in mySortedSet)
        {
            Console.WriteLine(i);
        }
    }
}
Producción:

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *