本文主要是介绍C# 对ListT取交集、连集及差集,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. 取交集 (A和B都有)
List A : { 1 , 2 , 3 , 5 , 9 }
List B : { 4 , 3 , 9 }
1 | var intersectedList = list1.Intersect(list2); |
結果 : { 3 , 9 }
判斷A和B是否有交集
1 | bool isIntersected = list1.Intersect(list2).Count() > 0 |
2. 取差集 (A有,B沒有)
List A : { 1 , 2 , 3 , 5 , 9 }
List B : { 4 , 3 , 9 }
1 | var expectedList = list1.Except(list2); |
結果 : { 1 , 2 , 5 }
判斷A和B是否有差集
1 | bool isExpected = list1.Expect(list2).Count() > 0 |
3. 取聯集 (包含A和B)
List A : { 1 , 2 , 3 , 5 , 9 }
List B : { 4 , 3 , 9 }
01 | public static class ListExtensions |
02 | { |
03 | public static List<T> Merge<T>( this List<T> source, List<T> target) |
04 | { |
05 | List<T> mergedList = new List<T>(source); |
06 |
07 | mergedList.AddRange(target.Except(source)); |
08 |
09 | return mergedList; |
10 | } |
11 | } |
1 | var mergedList = list1.Merge(list2); |
結果 : { 1 , 2 , 3 , 5 ,9 , 4 }
※ 6/15補充:感謝蹂躪大大提醒,LinQ已有內建方法Union可取聯集囉!
結語
使用Linq就可以輕鬆完成List的比對,
如果有任何問題歡迎大家一起討論囉 :)
转载于:http://www.cnblogs.com/liguanghui/archive/2011/11/09/2242309.html
首先举例2个集合A,B.
List<int> listA = new List<int> {1,2,3,5,7,9};
listA.BinarySearch("1");//查找该元素在集合中的索引值
在举例两个数组
r.AddRange(i);
int[] c = r.ToArray(); 合并数组
int[] x=i.Union(j).ToArray<int>(); //剔除重复项
int[] x=i.Concat(j).ToArray<int>(); //保留重复项
int n = Array.BinarySearch(i,3);//判断数组中是否包含某个值.如果包含则返回0
这篇关于C# 对ListT取交集、连集及差集的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!