C# |获取排序集中的最大值

原文:https://www . geeksforgeeks . org/c-sharp-获取最大排序值集/

SortedSet 类表示按排序顺序排列的对象集合。这个班隶属于T3 系统。集合.通用命名空间。排序集< T >。最大属性用于获取排序集中由比较器定义的最大值。

属性:

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

语法:

mySet.Max

在这里,我自己是一个排序集。

返回值:排序集中的最大值。

例 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<int> mySet = new SortedSet<int>();

        // 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);
    }
}

Output:

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<string> mySet = new SortedSet<string>();

        // 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);
    }
}

Output:

The maximum element in SortedSet is : F

参考: