检查SortedSet是否是C#中指定集合的超集
要检查SortedSet是否是指定集合的超集,代码如下-
示例
using System;
using System.Collections.Generic;
public class Demo {
public static void Main(){
SortedSet<string> set1 = new SortedSet<string>();
set1.Add("CD");
set1.Add("CD");
set1.Add("CD");
set1.Add("CD");
Console.WriteLine("Elements in SortedSet1...");
foreach (string res in set1){
Console.WriteLine(res);
}
SortedSet<string> set2 = new SortedSet<string>();
set2.Add("BC");
set2.Add("CD");
set2.Add("DE");
set2.Add("EF");
set2.Add("AB");
set2.Add("HI");
set2.Add("JK");
Console.WriteLine("Elements in SortedSet2...");
foreach (string res in set2){
Console.WriteLine(res);
}
Console.WriteLine("SortedSet2 is a superset of SortedSet1? = "+set2.IsSupersetOf(set1));
}
}输出结果
这将产生以下输出-
Elements in SortedSet1... CD Elements in SortedSet2... AB BC CD DE EF HI JK SortedSet2 is a superset of SortedSet1? = True
示例
让我们看另一个例子:
using System;
using System.Collections.Generic;
public class Demo {
public static void Main(){
SortedSet<int> set1 = new SortedSet<int>();
set1.Add(10);
set1.Add(20);
set1.Add(30);
set1.Add(40);
set1.Add(50);
set1.Add(60);
Console.WriteLine("Elements in SortedSet1...");
foreach (int res in set1){
Console.WriteLine(res);
}
SortedSet<int> set2 = new SortedSet<int>();
set2.Add(10);
set2.Add(20);
set2.Add(30);
set2.Add(40);
set2.Add(50);
set2.Add(60);
set2.Add(70);
set2.Add(80);
set2.Add(90);
set2.Add(100);
Console.WriteLine("Elements in SortedSet2...");
foreach (int res in set2){
Console.WriteLine(res);
}
Console.WriteLine("SortedSet2 is a superset of SortedSet1? = "+set2.IsSupersetOf(set1));
}
}输出结果
这将产生以下输出-
Elements in SortedSet1... 10 20 30 40 50 60 Elements in SortedSet2... 10 20 30 40 50 60 70 80 90 100 SortedSet2 is a superset of SortedSet1? = True
热门推荐
5 天仙配简短祝福语
10 集体年会祝福语简短创意
11 奶茶便利贴祝福语简短
12 完成预算祝福语简短精辟
13 高考成绩高分祝福语简短
14 儿童祝福语简短新春虎年
15 业主装修完成祝福语简短
16 新年到来的祝福语简短
17 简短经典的祖国祝福语
18 女儿蛋糕祝福语简短精辟