📌  相关文章
📜  C#|检查SortedSet是否包含特定元素

📅  最后修改于: 2021-05-29 17:14:00             🧑  作者: Mango

SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet .Contains(T)方法用于检查SortedSet是否包含特定元素。

特性:

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

句法:

public virtual bool Contains (T item);

在此, T是类型参数,即集合中元素的类型。

返回值:如果该集合包含指定的项目,则该方法返回True ,否则返回False

范例1:

// C# code to check if the SortedSet
// contains a specific element
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);
  
        // Checking if the SortedSet contains
        // a specific element
        Console.WriteLine(mySortedSet.Contains(6));
    }
}
输出:
True

范例2:

// C# code to check if the SortedSet
// contains a specific element
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("Mumbai");
        mySortedSet.Add("Bangalore");
        mySortedSet.Add("Chandigarh");
        mySortedSet.Add("Noida");
        mySortedSet.Add("Jaipur");
        mySortedSet.Add("Kolkata");
  
        // Checking if the SortedSet contains
        // a specific element
        Console.WriteLine(mySortedSet.Contains("Delhi"));
    }
}
输出:
False

参考:

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