C# List取交集, List取交集的方法

C# List取交集, List取交集的方法

        // using System.Linq;
        static void Main(string[] args)
        {
            // Intersect 交集
            // Except 差集
            // Union 并集
            List<int> list1 = new List<int> { 1, 2, 3, 4, 5 };
            List<int> list2 = new List<int> { 3, 4, 5, 6, 8 };

            // 取交集, 即两个集合中相同的元素
            // 输出: 3, 4, 5
            var intersect = list1.Intersect(list2).ToList();
            Console.WriteLine("交集: {0}", string.Join(",", intersect));

            // 取差集, list1中哪些元素是list2中不存在的
            // 输出: 1, 2
            var except1 = list1.Except(list2).ToList();
            Console.WriteLine("差集: {0}", string.Join(",", except1));

            // 取差集, list2中哪些元素是list1中不存在的
            // 输出: 6, 8
            var except2 = list2.Except(list1).ToList();
            Console.WriteLine("差集: {0}", string.Join(",", except2));

            // 取并集, list1集合与list2集合合并, 如果有相同元素只保留一个
            // 输出: 1, 2, 3, 4, 5, 6, 7, 8
            var union = list1.Union(list2).ToList();
            Console.WriteLine("并集: {0}", string.Join(",", union));

            Console.Read();
        }


作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角