Un HashSet es una colección desordenada de elementos únicos. Se encuentra en el espacio de nombres System.Collections.Generic . Se utiliza en una situación en la que queremos evitar que se inserten duplicados en la colección. En cuanto al rendimiento, es mejor en comparación con la lista. HashSet
Sintaxis:
mySet2.ExceptWith(mySet1)
Aquí, mySet1 y mySet2 son los dos HashSets y la función devuelve los elementos de mySet2 que no están en mySet1.
Excepción: este método dará ArgumentNullException si el HashSet es nulo .
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to remove all elements // in a collection from a HashSet using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of integers HashSet<int> mySet1 = new HashSet<int>(); // Inserting elements into HashSet mySet1 for (int i = 0; i < 7; i++) { mySet1.Add(i); } // Creating a HashSet of integers HashSet<int> mySet2 = new HashSet<int>(); // Inserting elements into HashSet mySet2 for (int i = 4; i < 11; i++) { mySet2.Add(i); } // Removing all elements in a collection from a HashSet mySet2.ExceptWith(mySet1); // Printing the elements in mySet2 // It only prints the elements which are // in mySet2 and not in mySet1 foreach(int i in mySet2) { Console.WriteLine(i); } } }
7 8 9 10
Ejemplo 2:
// C# code to remove all elements // in a collection from a HashSet using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of strings HashSet<string> mySet1 = new HashSet<string>(); // Inserting elements into HashSet mySet1 mySet1.Add("Punjab"); mySet1.Add("Haryana"); mySet1.Add("Jammu"); mySet1.Add("Himachal"); mySet1.Add("Delhi"); // Displaying all elements in mySet1 Console.WriteLine("The elements in mySet1 are : "); foreach(string i in mySet1) { Console.WriteLine(i); } // Creating a HashSet of strings HashSet<string> mySet2 = new HashSet<string>(); // Inserting elements into HashSet mySet2 mySet2.Add("Bangalore"); mySet2.Add("Kerala"); mySet2.Add("Uttar Pradesh"); mySet2.Add("Himachal"); mySet2.Add("Delhi"); // Displaying all elements in mySet2 Console.WriteLine("The elements in mySet2 are : "); foreach(string i in mySet2) { Console.WriteLine(i); } // Removing all elements in a collection from a HashSet mySet2.ExceptWith(mySet1); // Printing the elements in mySet2 // It only prints the elements which are // in mySet2 and not in mySet1 Console.WriteLine("The elements in mySet2 are : "); foreach(string i in mySet2) { Console.WriteLine(i); } } }
The elements in mySet1 are : Punjab Haryana Jammu Himachal Delhi The elements in mySet2 are : Bangalore Kerala Uttar Pradesh Himachal Delhi The elements in mySet2 are : Bangalore Kerala Uttar Pradesh
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA