C#中检查SortedSet和指定集合是否共享公共元素
要检查SortedSet和指定的集合是否共享公共元素,代码如下-
示例
using System;
using System.Collections.Generic;
public class Demo {
public static void Main() {
SortedSet<int> set1 = new SortedSet<int>();
set1.Add(100);
set1.Add(200);
set1.Add(300);
set1.Add(400);
set1.Add(500);
set1.Add(600);
SortedSet<int> set2 = new SortedSet<int>();
set2.Add(100);
set2.Add(200);
set2.Add(300);
set2.Add(400);
set2.Add(500);
set2.Add(600);
Console.WriteLine("Does it share common elements? = "+set1.Overlaps(set2));
}
}输出结果
这将产生以下输出-
Does it share common elements? = True
示例
让我们看另一个例子-
using System;
using System.Collections.Generic;
public class Demo {
public static void Main() {
SortedSet<int> set1 = new SortedSet<int>();
set1.Add(100);
set1.Add(200);
set1.Add(300);
SortedSet<int> set2 = new SortedSet<int>();
set2.Add(450);
set2.Add(550);
set2.Add(650);
set2.Add(750);
set2.Add(800);
Console.WriteLine("Does it share common elements? = "+set1.Overlaps(set2));
}
}输出结果
这将产生以下输出-
Does it share common elements? = False
热门推荐
5 祝福语简短古诗词
10 万寿祝福语简短
11 祝福语诗意文案简短
12 三八简短祝福语给婆婆
13 到同事新家简短祝福语
14 送蛇的祝福语简短
15 节日祝福语幽默简短的
16 18岁祝福语搞笑简短
17 求简短的职场祝福语
18 城市祝福语简短10字