NET 集合交集、并集、差集操作
2024-09-12 04:54:54
var list1 = new List<int> { , , , , , , , }; var list2 = new List<int> { , , , , , , , , };
// List1:1 3 5 7 9 11 13 15
Console.WriteLine("List1:" + string.Join("\t", list1));
// List2:1 2 3 4 5 6 7 8 9
Console.WriteLine("List2:" + string.Join("\t", list2));
// 差集-List1有List2无:11 13 15
Console.WriteLine("差集-List1有List2无:" + string.Join("\t", list1.Except(list2)));
// 交集-List1有List2有:1 3 5 7 9
Console.WriteLine("交集-List1有List2有:" + string.Join("\t", list1.Intersect(list2)));
// 并集-包含List1和List2:1 3 5 7 9 11 13 15 2 4 6 8
Console.WriteLine("并集-包含List1和List2:" + string.Join("\t", list1.Union(list2)));
Console.ReadLine();
最新文章
- GroupJoin和Join的声明及调用
- dedecms /member/pm.php SQL Injection Vul
- (转) C# textbox 限制输入问题
- LotusPhp中配置文件组件LtConfig详解
- .Net中JS调用后台的方法
- poj 2553 The Bottom of a Graph【强连通分量求汇点个数】
- MapReduce执行过程源码分析(一)&mdash;&mdash;Job任务的提交
- 如何在settings里的休眠模式里添加永不休眠
- ConcurrentSkipListMap深入分析
- 1.1专题介绍「深入浅出ASP.NET Core系列」
- usb输入子系统写程序(三)
- 实现对HashMap的value排序
- 简明的Python教程当中的几个疑惑点分析#1
- Spring错误小结
- <;Differential Geometry of Curves and Surfaces>;(by Manfredo P. do Carmo) Notes
- Spring read-only=";true"; 只读事务的
- python使用paramiko自动化部署linux程序
- Asp.Net操作MySql数据库增删改查
- AbpZero之企业微信---登录(拓展第三方auth授权登录)---第二步:开始逐步实现企业微信登录
- php爬虫学习笔记1 PHP Simple HTML DOM Parser
热门文章
- OptionParser模块学习
- 内部存储 openFileInputStream openFileOutputStream
- Html的Padding,Margin自己理解图
- swagger ui js 错误:Failed to execute &#39;serializeToString&#39; on &#39;XMLSerializer&#39;: parameter 1 is not of type &#39;Node&#39;.
- YAML教程
- 老板说你的UI设计的不高级?你肯定没用这7个技巧...
- 参看dll参数类型
- Laravel5.4 Oauth2.0认证应用 API 实战!
- [Eclipse]Eclipse里对XML进行注释的快捷键
- Debian8 下面 muduo库编译与使用