Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में हैशसेट से संग्रह में सभी तत्वों को हटा दें

हैशसेट से संग्रह के सभी तत्वों को हटाने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args){
      HashSet<string> set1 = new HashSet<string>();
      set1.Add("Ryan");
      set1.Add("Tom");
      set1.Add("Andy");
      set1.Add("Tim");
      Console.WriteLine("Elements in HashSet1...");
      foreach (string res in set1){
         Console.WriteLine(res);
      }
      HashSet<string> set2 = new HashSet<string>();
      set2.Add("John");
      set2.Add("Jacob");
      set2.Add("Ryan");
      set2.Add("Tom");
      set2.Add("Andy");
      set2.Add("Tim");
      set2.Add("Steve");
      set2.Add("Mark");
      Console.WriteLine("Elements in HashSet2...");
      foreach (string res in set2){
         Console.WriteLine(res);
      }
      Console.WriteLine("Is HashSet1 equal to HashSet2? = "+set1.Equals(set2));
      set2.ExceptWith(set1);
      // displaying elements in set2, which are not on set1
      foreach(string i in set2){
         Console.WriteLine(i);
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Elements in HashSet1...
Ryan
Tom
Andy
Tim
Elements in HashSet2...
John
Jacob
Ryan
Tom
Andy
Tim
Steve
Mark
Is HashSet1 equal to HashSet2? = False John
Jacob
Steve
Mark

उदाहरण

आइए एक और उदाहरण देखें -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args){
      HashSet<string> set1 = new HashSet<string>();
      set1.Add("Jacob");
      set1.Add("Ryan");
      set1.Add("Tom");
      set1.Add("Andy");
      set1.Add("Tim");
      set1.Add("Steve");
      set1.Add("Mark");
      Console.WriteLine("Elements in HashSet1...");
      foreach (string res in set1){
         Console.WriteLine(res);
      }
      HashSet<string> set2 = new HashSet<string>();
      set2.Add("Kevin");
      set2.Add("Jacob");
      set2.Add("Ryan");
      set2.Add("Tom");
      set2.Add("Andy");
      set2.Add("Tim");
      set2.Add("Steve");
      set2.Add("Mark");
      Console.WriteLine("Elements in HashSet2...");
      foreach (string res in set2){
         Console.WriteLine(res);
      }
      Console.WriteLine("Is HashSet1 equal to HashSet2? = "+set1.Equals(set2));
      set2.ExceptWith(set1);
      // displaying elements in set2, which are not on set1
      foreach(string i in set2){
         Console.WriteLine(i);
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Elements in HashSet1...
Jacob
Ryan
Tom
Andy
Tim
Steve
Mark
Elements in HashSet2...
Kevin
Jacob
Ryan
Tom
Andy
Tim
Steve
Mark
Is HashSet1 equal to HashSet2? = False Kevin

  1. सूची से डुप्लिकेट तत्वों को हटाने के लिए सी # प्रोग्राम

    एक सूची घोषित करें और तत्व जोड़ें। List<int> list = new List<int>(); list.Add(50); list.Add(90); list.Add(50); list.Add(100); अब, केवल विशिष्ट तत्व प्राप्त करने के लिए Distinct() विधि का उपयोग करें। List<int> myList = list.Distinct().ToList(); सूची से डुप्लिकेट तत्वों को हटाने के

  1. सी # में संग्रह से तत्वों को पुनः प्राप्त करना

    आइए सूची संग्रह का एक उदाहरण देखें। हमने तत्वों को सेट किया है - List<int> list = new List<int>(); list.Add(20); list.Add(40); list.Add(60); list.Add(80); अब मान लें कि हमें सूची से पहले तत्व को पुनः प्राप्त करने की आवश्यकता है। उसके लिए इंडेक्स को इस तरह सेट करें - int a = list[0]; स

  1. जावा में ArrayList से सभी तत्वों को हटा दें

    जावा में ArrayList से सभी तत्वों को हटाने के लिए, आइए पहले कुछ तत्वों के साथ एक ArrayList बनाएं - ArrayList<Integer> arrlist = new ArrayList<Integer>(5); arrlist.add(25); arrlist.add(50); arrlist.add(75); arrlist.add(100); arrlist.add(150); arrlist.add(200); arrlist.add(250); अब, सभी तत