Intersection of Two Arrays II
Problem
Given two integer arrays nums1
and nums2
, return an array of their intersection. Each element in the result must appear as many times as it shows in both arrays and you may return the result 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?
Constraints
1 <= nums1.length, nums2.length <= 1000
0 <= nums1[i], nums2[i] <= 1000
Solution
The problem Intersection of Two Arrays II
can be solved using two hash maps, one to keep track of the number of each elements in one array and another to find intersection of two arrays.
Implementation
class Solution
{
private:
char hashmap1[1001];
char hashmap2[1001];
public:
vector<int> intersect(vector<int> &nums1, vector<int> &nums2)
{
for (int num : nums1)
hashmap1[num] += 1;
for (int num : nums2)
if (hashmap1[num] > hashmap2[num])
hashmap2[num] += 1;
vector<int> ret;
for (int i = 0; i <= 1000; i++)
if (hashmap2[i])
ret.insert(ret.end(), hashmap2[i], i);
return ret;
}
};