C#
 Computer >> コンピューター >  >> プログラミング >> C#

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);
      }
      Console.WriteLine("Does the SortedSet1 contains the element DE? = "+set1.Contains("DE"));
      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
Does the SortedSet1 contains the element DE? = False
Elements in SortedSet2...
AB
BC
CD
DE
EF
HI
JK
SortedSet2 is a superset of SortedSet1? = True

別の例を見てみましょう-

Let us see another example:
using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedSet<int> mySet = new SortedSet<int>();
      mySet.Add(100);
      mySet.Add(200);
      mySet.Add(300);
      mySet.Add(400);
      Console.WriteLine("Elements in SortedSet...");
      foreach (int res in mySet){
         Console.WriteLine(res);
      }
      Console.WriteLine("Does the SortedSet contains the element 400? = "+mySet.Contains(400));
   }
}

出力

これにより、次の出力が生成されます-

Elements in SortedSet...
100
200
300
400
Does the SortedSet contains the element 400? = True

  1. 要素がC#のコレクションにあるかどうかを確認します

    要素がコレクションにあるかどうかを確認するためのコードは、次のとおりです- 例 using System; using System.Collections.ObjectModel; public class Demo {    public static void Main(){       Collection<int> col = new Collection<int>();       col.Add(10);       col.Add(20); &n

  2. HashSetにC#で指定された要素が含まれているかどうかを確認します

    HashSetに指定された要素が含まれているかどうかを確認するためのコードは、次のとおりです- 例 using System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet<int> set1 = new HashSet<int>();       set1.Add(25);       set1.Add(50);