Seawolf 发表于 2019-9-16 09:58:57

leetcode 350. Intersection of Two Arrays II

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

Example 1:

Input: nums1 = , nums2 =
Output:
Example 2:

Input: nums1 = , nums2 =
Output:
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?

class Solution {
    public int[] intersect(int[] nums1, int[] nums2) {
      
      if(nums1.length == 0) return nums1;
      if(nums2.length == 0) return nums2;
      
      List<Integer> list = new ArrayList<>();
      for(int i = 0; i < nums1.length ; i++){
            
            if(index(nums2, nums1) != -1){
               
                nums2)] = -9999;
                list.add(nums1);
            }
      }
      
      int[] res = new int;
      for(int i = 0; i< res.length; i++){
            
            res = list.get(i);
      }
      
      return res;
    }
   
    public int index(int[] nums, int e){
      
      for(int i = 0; i<nums.length ; i++){
            if(nums == e) return i;
      }
      
      return -1;
    }
}
页: [1]
查看完整版本: leetcode 350. Intersection of Two Arrays II