📜  C#|获取SortedSet中的元素数

📅  最后修改于: 2021-05-29 23:58:37             🧑  作者: Mango

SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet .Count属性用于获取SortedSet中的元素数。

特性:

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

句法:

mySortedSet.Count

在这里, mySortedSet是一个SortedSet。

下面给出了一些示例,以更好地理解实现:

范例1:

// C# code to get the number of
// elements in 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(1);
        mySortedSet.Add(2);
        mySortedSet.Add(3);
        mySortedSet.Add(4);
        mySortedSet.Add(5);
  
        // Displaying the number of elements in
        // the SortedSet using "Count" function
        Console.WriteLine("The number of elements in mySortedSet are: " 
                                                  + mySortedSet.Count);
    }
}
输出:
The number of elements in mySortedSet are: 5

范例2:

// C# code to get the number of
// elements in the 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("Hey");
        mySortedSet.Add("GeeksforGeeks");
        mySortedSet.Add("and");
        mySortedSet.Add("Geeks Classes");
  
        // Displaying the number of elements in
        // the SortedSet using "Count" function
        Console.WriteLine("The number of elements in mySortedSet are: " 
                                                   + mySortedSet.Count);
    }
}
输出:
The number of elements in mySortedSet are: 4

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.sortedset-1.count?view=netcore-2.1