C# |检查 SortedSet 和指定的集合是否包含相同的元素
SortedSet 类表示按排序顺序排列的对象集合。这个班隶属于T3 系统。集合.通用命名空间。排序集合。SetEquals(IEnumerable )方法 用于检查 SortedSet 和指定集合是否包含相同的元素。
属性:
- 在 C# 中,SortedSet 类可用于存储、移除或查看元素。
- 它保持升序,不存储重复的元素。
- 如果必须存储唯一元素并保持升序,建议使用 SortedSet 类。
语法:
mySortedSet1.SetEquals(mySortedSet2);
这里我的 ortedSet1 和我的 ortedSet2 是两个排序集。
返回值:如果 mySortedSet1 和 mySortedSet2 相等,则函数返回 真 ,否则返回 假 。
异常:如果排序集为空,该方法将给出参数空异常。
例 1:
// C# code to Check if SortedSet
// and the specified collection
// contain the same elements
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a SortedSet of integers
SortedSet<int> mySortedSet1 = new SortedSet<int>();
// adding elements in mySortedSet1
mySortedSet1.Add(1);
mySortedSet1.Add(2);
mySortedSet1.Add(3);
mySortedSet1.Add(4);
mySortedSet1.Add(5);
// Creating a SortedSet of integers
SortedSet<int> mySortedSet2 = new SortedSet<int>();
// adding elements in mySortedSet2
mySortedSet2.Add(1);
mySortedSet2.Add(2);
mySortedSet2.Add(3);
mySortedSet2.Add(4);
mySortedSet2.Add(5);
// Check if SortedSet and the specified
// collection contain the same elements
Console.WriteLine(mySortedSet1.SetEquals(mySortedSet2));
}
}
Output:
True
例 2:
// C# code to Check if SortedSet and
// the specified collection
// contain the same elements
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a SortedSet of strings
SortedSet<string> mySortedSet1 = new SortedSet<string>();
// adding elements in mySortedSet1
mySortedSet1.Add("A");
mySortedSet1.Add("B");
mySortedSet1.Add("C");
mySortedSet1.Add("D");
mySortedSet1.Add("E");
// Creating a SortedSet of strings
SortedSet<string> mySortedSet2 = new SortedSet<string>();
// adding elements in mySortedSet2
mySortedSet2.Add("F");
mySortedSet2.Add("G");
mySortedSet2.Add("H");
mySortedSet2.Add("I");
mySortedSet2.Add("J");
// Check if SortedSet and the specified
// collection contain the same elements
Console.WriteLine(mySortedSet1.SetEquals(mySortedSet2));
}
}
Output:
False
参考:
版权属于:月萌API www.moonapi.com,转载请注明出处