Home  >  Article  >  Backend Development  >  Union, intersection and difference analysis of List in C#

Union, intersection and difference analysis of List in C#

黄舟
黄舟Original
2017-09-18 11:03:582638browse

The union of sets is to merge the items of the sets, as shown below:


List<int> ls1 = new List<int>() { 1,2,3,5,7,9 };
List<int> ls2 = new List<int>() { 2,4,6,8,9,10};

IEnumerable<int> unionLs = ls1.Union(ls2);foreach (int item in unionLs)
{
    Console.Write("{0}\t", item);
}

##The intersection of sets is to take the common items of the sets, as shown in the following figure:


List<int> ls1 = new List<int>() { 1,2,3,5,7,9 };
List<int> ls2 = new List<int>() { 2,4,6,8,9,10};


IEnumerable<int> intersectLs = ls1.Intersect(ls2);foreach (int item in intersectLs)
{
    Console.Write("{0}\t",item);
}

The difference set of a set is to take all the items that are in this set but not in another set, as shown in the following figure:


List<int> ls1 = new List<int>() { 1,2,3,5,7,9 };
List<int> ls2 = new List<int>() { 2,4,6,8,9,10};


IEnumerable<int> exceptLs = ls1.Except(ls2);foreach (int item in exceptLs)
{
    Console.Write("{0}\t", item);
}

##

The above is the detailed content of Union, intersection and difference analysis of List in C#. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn