Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

ลบองค์ประกอบออกจาก SortedSet ที่ตรงกับเพรดิเคตใน C #


ในการลบองค์ประกอบออกจาก SortedSet ที่ตรงกับเพรดิเคต รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Collections.Generic;
public class Demo {
   private static bool demo(int i) {
      return ((i % 10) == 0);
   }
   public static void Main(String[] args) {
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(200);
      set1.Add(215);
      set1.Add(310);
      set1.Add(500);
      set1.Add(600);
      Console.WriteLine("SortedSet elements...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
      Console.WriteLine(" ");
      set1.RemoveWhere(demo);
      Console.WriteLine("SortedSet after removing some elements...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

SortedSet elements...
200
215
310
500
600
SortedSet after removing some elements...
215

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Collections.Generic;
public class Demo {
   private static bool demo(int i) {
      return (i == 500);
   }
   public static void Main(String[] args) {
      SortedSet<int> set1 = new SortedSet<int>();
      set1.Add(200);
      set1.Add(215);
      set1.Add(310);
      set1.Add(500);
      set1.Add(600);
      Console.WriteLine("SortedSet elements...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
      Console.WriteLine(" ");
      set1.RemoveWhere(demo);
      Console.WriteLine("SortedSet after removing an element...");
      foreach (int i in set1) {
         Console.WriteLine(i);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

SortedSet elements...
200
215
310
500
600
SortedSet after removing an element...
200
215
310
600