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:
mySet1.IsSubsetOf(mySet2);
Aquí mySet1 y mySet2 son HashSets.
Tipo de devolución: este método devuelve verdadero si HashSet
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 Check if a HashSet is // a subset of the specified collection 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 in HashSet // mySet1 only contains even numbers less than // equal to 10 for (int i = 1; i <= 5; i++) mySet1.Add(2 * i); // Creating a HashSet of integers HashSet<int> mySet2 = new HashSet<int>(); // Inserting elements in HashSet // mySet2 contains all numbers from 1 to 10 for (int i = 1; i <= 10; i++) mySet2.Add(i); // Check if a HashSet mySet1 is a subset // of the HashSet mySet2 Console.WriteLine(mySet1.IsSubsetOf(mySet2)); } }
True
Ejemplo 2:
// C# code to Check if a HashSet is // a subset of the specified collection 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>(); // Creating a HashSet of integers HashSet<int> mySet2 = new HashSet<int>(); // Inserting elements in HashSet mySet2. // mySet2 contains all numbers from 1 to 10 for (int i = 1; i <= 10; i++) mySet2.Add(i); // Check if a HashSet mySet1 is a subset // of the HashSet mySet2 // It should return true, as an empty HashSet is // subset of other HashSet Console.WriteLine(mySet1.IsSubsetOf(mySet2)); } }
True
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