350. Find the intersection of two arrays intersection of two Arrays II

Source: Internet
Author: User

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

example:
given  Nums1  = [1, 2, 2, 1] ,   Nums2  = [2, 2] , Return [2, 2] .

Note:

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

Follow up:

    • What if the given array is already sorted? How would optimize your algorithm?
    • What if nums1' s size is small compared to nums2' s size? Which algorithm is better?
    • What if elements of nums2 be stored on disk, and the memory is limited such so you cannot load all elements in To 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. }



From for notes (Wiz)

350. Find the intersection of two arrays intersection of two Arrays II

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.