C# Linq 交集、並集、差集、去重
using System.Linq;
List<string> ListA = new List<string>();
List<string> ListB = new List<string>();
List<string> ListResult = new List<string>();
ListResult = ListA.Distinct().ToList();//去重
ListResult = ListA.Except(ListB).ToList();//差集
ListResult= ListA.Union(ListB).ToList(); //並集
ListResult = ListA.Intersect(ListB).ToList();//交集
相關文章
- C# 交集、差集、並集、去重C#
- 【轉】 js陣列 Array 交集 並集 差集 去重JS陣列
- Spark2 Dataset去重、差集、交集Spark
- NET 集合交集、並集、差集操作
- 【資料集合】並集、交集、差集、子集
- JS實現並集,交集和差集JS
- JS求陣列的交集、並集、差集JS陣列
- 利用Underscore求陣列的交集、並集和差集陣列
- sql_intersect交集_minus差集_並集union_union allSQL
- Python求兩個list的交集、並集、差(補)集、對稱差集的方法Python
- Linux求兩個文字檔案的交集、差集、並集Linux
- Python求兩個list的差集、交集與並集的方法Python
- python-進階教程-對兩個集合/字典求交集、差集、並集Python
- MySQL實現差集(Minus)和交集(Intersect)MySql
- C#中Linq的去重方式Distinct詳解C#
- Linux 對比兩個文字的交集和差集(comm)Linux
- List和set集合:交集、差集、合集的區別retainAll,removeAll、addAllAIREM
- linq to sql 部落格集錦SQL
- 並查集到帶權並查集並查集
- 【並查集】【帶偏移的並查集】食物鏈並查集
- C#資料去重C#
- 並查集(一)並查集的幾種實現並查集
- 並查集(小白)並查集
- 3.1並查集並查集
- 重學c#系列——linq(3) [二十九]C#
- 重學c#系列——linq(2) [二十八]C#
- C# datatable中重複資料去重C#
- 並查集(Union Find)並查集
- 並查集應用並查集
- The Door Problem 並查集並查集
- 並查集練習並查集
- 並查集的使用並查集
- 並查集—應用並查集
- 寫模板, 並查集。並查集
- 並查集跳躍並查集
- 各種並查集並查集
- 並查集(二)並查集的演算法應用案例上並查集演算法
- Codeforces2020D Connect the Dots(觀察 + 並查集 + 差分)並查集