SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet
特性:
- 在C#中,SortedSet类可用于存储,删除或查看元素。
- 它保持升序,并且不存储重复的元素。
- 如果必须存储唯一元素并保持升序,建议使用SortedSet类。
句法:
mySortedSet1.IntersectWith(mySortedSet2);
在这里, mySortedSet1和mySortedSet2是两个SortedSet的对象。
异常:如果SortedSet为null,则此方法将提供ArgumentNullException 。
下面给出了一些示例,以更好地理解实现:
范例1:
// C# code to get the Intersection of 2 SortedSets
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a SortedSet of integers
SortedSet mySortedSet1 = new SortedSet();
// adding elements in mySortedSet1
mySortedSet1.Add(2);
mySortedSet1.Add(4);
mySortedSet1.Add(6);
mySortedSet1.Add(8);
mySortedSet1.Add(10);
// Creating a SortedSet of integers
SortedSet mySortedSet2 = new SortedSet();
// adding elements in mySortedSet
mySortedSet2.Add(4);
mySortedSet2.Add(5);
mySortedSet2.Add(7);
mySortedSet2.Add(8);
mySortedSet2.Add(9);
Console.WriteLine("The intersection of mySortedSet1 and mySortedSet2:");
mySortedSet1.IntersectWith(mySortedSet2);
// To display the intersection
// of mySortedSet1 and mySortedSet2
foreach(int i in mySortedSet1)
{
Console.WriteLine(i);
}
}
}
输出:
The intersection of mySortedSet1 and mySortedSet2:
4
8
范例2:
// C# code to get the Intersection of 2 SortedSets
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a SortedSet of strings
SortedSet mySortedSet1 = new SortedSet();
// adding elements in mySortedSet1
mySortedSet1.Add("Geeks");
mySortedSet1.Add("for");
mySortedSet1.Add("Geeks");
mySortedSet1.Add("Noida");
mySortedSet1.Add("Data Structures");
// Creating a SortedSet of strings
SortedSet mySortedSet2 = new SortedSet();
// adding elements in mySortedSet
mySortedSet2.Add("Geeks");
mySortedSet2.Add("Java");
mySortedSet2.Add("Geeks Classes");
mySortedSet2.Add("C++");
mySortedSet2.Add("Noida");
Console.WriteLine("The Intersection of mySortedSet1 and mySortedSet2:");
mySortedSet1.IntersectWith(mySortedSet2);
// To display the intersection of
// mySortedSet1 and mySortedSet2
foreach(string str in mySortedSet1)
{
Console.WriteLine(str);
}
}
}
输出:
The Intersection of mySortedSet1 and mySortedSet2 is:
Geeks
Noida
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.sortedset-1.intersectwith?view=netcore-2.1