📌  相关文章
📜  C#|检查SortedSet对象是否是指定集合的正确子集

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

SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet .IsProperSubsetOf(IEnumerable )方法用于检查SortedSet 对象是否是指定集合的适当子集。

特性:

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

句法:

mySet1.IsProperSubsetOf(mySet2);

在这里, mySet1mySet2是两个SortedSets的对象。

返回值:如果SortedSet 对象是其他对象的适当子集,则此方法返回True ,否则返回False

下面的程序说明了SortedSet .IsProperSubsetOf(IEnumerable )方法的用法

范例1:

// C# code to Check if a SortedSet is a
// proper subset of the specified collection
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of integers
        SortedSet mySet1 = new SortedSet();
  
        // Inserting elements in SortedSet
        for (int i = 0; i < 10; i++) {
            mySet1.Add(i);
        }
  
        // Creating a SortedSet of integers
        SortedSet mySet2 = new SortedSet();
  
        // Inserting elements in SortedSet
        mySet2.Add(3);
        mySet2.Add(4);
        mySet2.Add(5);
        mySet2.Add(6);
  
        // Check if a SortedSet is a proper subset
        // of the specified collection
        // It should return true as SortedSet mySet2
        // is a proper subset of SortedSet mySet1
        Console.WriteLine(mySet2.IsProperSubsetOf(mySet1));
    }
}
输出:
True

范例2:

// C# code to Check if a SortedSet is a
// proper subset of the specified collection
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of strings
        SortedSet mySet1 = new SortedSet();
  
        // Inserting elements in SortedSet
        mySet1.Add("A");
        mySet1.Add("B");
        mySet1.Add("C");
        mySet1.Add("D");
        mySet1.Add("E");
  
        // Creating a SortedSet of strings
        SortedSet mySet2 = new SortedSet();
  
        // Inserting elements in SortedSet
        mySet2.Add("B");
        mySet2.Add("C");
        mySet2.Add("D");
        mySet2.Add("E");
  
        // Check if a SortedSet is a proper subset
        // of the specified collection
        // It should return true as SortedSet mySet1
        // is proper subset of SortedSet mySet2
        Console.WriteLine(mySet2.IsProperSubsetOf(mySet1));
    }
}
输出:
True

参考:

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