码迷,mamicode.com
首页 > 编程语言 > 详细

350.求两个数组的交集 Intersection of Two Arrays II

时间:2017-01-10 23:48:30      阅读:466      评论:0      收藏:0      [点我收藏+]

标签:个数   数组   load   ace   href   line   arrays   margin   bottom   

Given two arrays, write a function to compute their intersection.

Example:
Given nums1 = [1, 2, 2, 1]nums2 = [2, 2], return [2, 2].

Note:

  • Each element in the result should appear as many times as it shows in both arrays.
  • The result can be in any order.

Follow up:

  • What if the given array is already sorted? How would you optimize your algorithm?
  • What if nums1‘s size is small compared to nums2‘s size? Which algorithm is better?
  • What if elements of nums2 are stored on disk, and the memory is limited such that you cannot load all elements into the memory at once?

  1. public class Solution {
  2. public int[] Intersect(int[] nums1, int[] nums2) {
  3. List<int> list = new List<int>();
  4. List<int> intersectList = new List<int>();
  5. list = nums1.ToList<int>();
  6. int num = 0;
  7. int length = nums2.Length;
  8. for(int i=0;i<length;i++)
  9. {
  10. num = nums2[i];
  11. if (list.Contains(nums2[i]))
  12. {
  13. list.Remove(num);
  14. intersectList.Add(num);
  15. }
  16. }
  17. int[] intersect = intersectList.ToArray();
  18. return intersect;
  19. }
  20. }





350.求两个数组的交集 Intersection of Two Arrays II

标签:个数   数组   load   ace   href   line   arrays   margin   bottom   

原文地址:http://www.cnblogs.com/xiejunzhao/p/6f1b84afef0f161549153f0441fd4bd2.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!