1、题目:两个数组的交集
给你两个整数数组 nums1 和 nums2 ,请你以数组形式返回两数组的交集。返回结果中每个元素出现的次数,应与元素在两个数组中都出现的次数一致(如果出现次数不一致,则考虑取较小值)。可以不考虑输出结果的顺序。
2、解题思路
方法一:哈希表
首先遍历第一个数组,并在哈希表中记录第一个数组中的每个数字以及对应出现的次数,然后遍历第二个数组,对于第二个数组中的每个数字,如果在哈希表中存在这个数字,则将该数字添加到答案,并减少哈希表中该数字出现的次数。
为了降低空间复杂度,首先遍历较短的数组并在哈希表中记录每个数字以及对应出现的次数,然后遍历较长的数组得到交集。
方法二:双指针(数组是有序的情况下)
首先对两个数组进行排序,然后使用两个指针遍历两个数组。
初始时,两个指针分别指向两个数组的头部。每次比较两个指针指向的两个数组中的数字,如果两个数字不相等,则将指向较小数字的指针右移一位,如果两个数字相等,将该数字添加到答案,并将两个指针都右移一位。当至少有一个指针超出数组范围时,遍历结束。
3、代码
//哈希表
class Solution
{
public:
vector<int> intersect(vector<int>& nums1, vector<int>& nums2)
{
//永远先遍历短的字符串
if (nums1.size() > nums2.size())
{
return intersect(nums2, nums1);
}
unordered_map <int, int> m;
for (int num : nums1)
{
++m[num];
}
vector<int> intersection;
for (int num : nums2)
{
if (m.count(num))
{
intersection.push_back(num);
--m[num];
if (m[num] == 0)
{
m.erase(num);
}
}
}
return intersection;
}
};
//方法二
class Solution
{
public:
vector<int> intersect(vector<int>& nums1, vector<int>& nums2)
{
sort(nums1.begin(), nums1.end());
sort(nums2.begin(), nums2.end());
int length1 = nums1.size(), length2 = nums2.size();
vector<int> intersection;
int index1 = 0, index2 = 0;
while (index1 < length1 && index2 < length2)
{
if (nums1[index1] < nums2[index2])
{
index1++;
}
else if (nums1[index1] > nums2[index2])
{
index2++;
}
else
{
intersection.push_back(nums1[index1]);
index1++;
index2++;
}
}
return intersection;
}
};