📜  C#| SortedSet与集合的交集

📅  最后修改于: 2021-05-29 22:30:39             🧑  作者: Mango

SortedSet类按排序顺序表示对象的集合。此类位于System.Collections.Generic命名空间下。 SortedSet .IntersectWith(IEnumerable )方法用于修改当前的SortedSet 对象,使其仅包含指定集合中的元素。

特性:

  • 在C#中,SortedSet类可用于存储,删除或查看元素。
  • 它保持升序,并且不存储重复的元素。
  • 如果必须存储唯一元素并保持升序,建议使用SortedSet类。

句法:

mySortedSet1.IntersectWith(mySortedSet2);

在这里, mySortedSet1mySortedSet2是两个SortedSet的对象。

异常:如果SortedSet为null,则此方法将提供ArgumentNullException

下面给出了一些示例,以更好地理解实现:

范例1:

// C# code to get the Intersection of 2 SortedSets
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of integers
        SortedSet mySortedSet1 = new SortedSet();
  
        // adding elements in mySortedSet1
        mySortedSet1.Add(2);
        mySortedSet1.Add(4);
        mySortedSet1.Add(6);
        mySortedSet1.Add(8);
        mySortedSet1.Add(10);
  
        // Creating a SortedSet of integers
        SortedSet mySortedSet2 = new SortedSet();
  
        // adding elements in mySortedSet
        mySortedSet2.Add(4);
        mySortedSet2.Add(5);
        mySortedSet2.Add(7);
        mySortedSet2.Add(8);
        mySortedSet2.Add(9);
  
        Console.WriteLine("The intersection of mySortedSet1 and mySortedSet2:");
  
        mySortedSet1.IntersectWith(mySortedSet2);
  
        // To display the intersection 
        // of mySortedSet1 and mySortedSet2
        foreach(int i in mySortedSet1)
        {
            Console.WriteLine(i);
        }
    }
}
输出:
The intersection of mySortedSet1 and mySortedSet2: 
4
8

范例2:

// C# code to get the Intersection of 2 SortedSets
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedSet of strings
        SortedSet mySortedSet1 = new SortedSet();
  
        // adding elements in mySortedSet1
        mySortedSet1.Add("Geeks");
        mySortedSet1.Add("for");
        mySortedSet1.Add("Geeks");
        mySortedSet1.Add("Noida");
        mySortedSet1.Add("Data Structures");
  
        // Creating a SortedSet of strings
        SortedSet mySortedSet2 = new SortedSet();
  
        // adding elements in mySortedSet
        mySortedSet2.Add("Geeks");
        mySortedSet2.Add("Java");
        mySortedSet2.Add("Geeks Classes");
        mySortedSet2.Add("C++");
        mySortedSet2.Add("Noida");
  
        Console.WriteLine("The Intersection of mySortedSet1 and mySortedSet2:");
  
        mySortedSet1.IntersectWith(mySortedSet2);
  
        // To display the intersection of
        // mySortedSet1 and mySortedSet2
        foreach(string str in mySortedSet1)
        {
            Console.WriteLine(str);
        }
    }
}
输出:
The Intersection of mySortedSet1 and mySortedSet2 is: 
Geeks
Noida

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.sortedset-1.intersectwith?view=netcore-2.1