📜  C#|从SortedSet中删除指定的项目

📅  最后修改于: 2021-05-29 22:48:18             🧑  作者: Mango

SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet .Remove(T)方法用于从SortedSet中删除指定的项目。

特性:

  • 在C#中,SortedSet类可用于存储,删除或查看元素。
  • 它保持升序,并且不存储重复的元素。
  • 如果必须存储唯一元素并保持升序,建议使用SortedSet类。

句法:

public bool Remove (T item);

这里, item是要从SortedSet中删除的指定项目。

注意:如果SortedSet < T >对象不包含指定的元素,则该对象保持不变,并且不会引发任何异常。

范例1:

// C# code to remove a specified element
// from the SortedSet
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of integers
        SortedSet mySortedSet = new SortedSet();
  
        // adding elements in mySortedSet
        mySortedSet.Add(2);
        mySortedSet.Add(4);
        mySortedSet.Add(6);
        mySortedSet.Add(8);
        mySortedSet.Add(10);
  
        // Removing element "4" if found
        mySortedSet.Remove(4);
  
        // Displaying the elements in mySortedSet
        foreach(int i in mySortedSet)
        {
            Console.WriteLine(i);
        }
  
        Console.WriteLine("After Using Method");
  
        // Removing element "14" if found
        mySortedSet.Remove(14);
  
        // Displaying the element in mySortedSet
        foreach(int i in mySortedSet)
        {
            Console.WriteLine(i);
        }
    }
}
输出:
2
6
8
10
After Using Method
2
6
8
10

范例2:

// C# code to remove the specified
// element from SortedSet
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of strings
        SortedSet mySortedSet = new SortedSet();
  
        // adding elements in mySortedSet
        mySortedSet.Add("A");
        mySortedSet.Add("B");
        mySortedSet.Add("C");
        mySortedSet.Add("D");
        mySortedSet.Add("E");
  
        // Removing element "C" if found
        mySortedSet.Remove("C");
  
        // Displaying the element in mySortedSet
        foreach(string str in mySortedSet)
        {
            Console.WriteLine(str);
        }
    }
}
输出:
A
B
D
E