檢查 SortedSet 和指定集合是否包含相同的元素(在 C# 中)
為了檢查 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);
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 contain the same elements? = "+set1.SetEquals(set2));
}
}輸出
此程式碼將產生以下輸出 −
Does it contain the same elements? = False
示例
我們來看另一個示例 −
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(100);
set2.Add(200);
set2.Add(300);
Console.WriteLine("Does it contain the same elements? = "+set1.SetEquals(set2));
}
}輸出
此程式碼將產生以下輸出 −
Does it contain the same elements? = True
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP