📜  C#|在SortedSet中获取最大值

📅  最后修改于: 2021-05-29 19:15:47             🧑  作者: Mango

SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet .Max属性用于获取由比较器定义的SortedSet中的最大值。

特性:

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

句法 :

mySet.Max

在这里, mySet是一个SortedSet。

返回值: SortedSet中的最大值。

范例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 mySet = new SortedSet();
  
        // 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);
    }
}
输出:
The maximum element in SortedSet is : 9

范例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 mySet = new SortedSet();
  
        // 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);
    }
}
输出:
The maximum element in SortedSet is : F

参考:

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