Leetcode 350 两个数组的交集II

Leetcode 350 两个数组的交集II

题目描述:

给你两个整数数组 nums1 和 nums2 ,请你以数组形式返回两数组的交集。返回结果中每个元素出现的次数,应与元素在两个数组中都出现的次数一致(如果出现次数不一致,则考虑取较小值)。可以不考虑输出结果的顺序。

示例1:
输入:nums1 = [1,2,2,1], nums2 = [2,2]
输出:[2,2]
示例2:
输入:nums1 = [4,9,5], nums2 = [9,4,9,8,4]
输出:[4,9]
解法:排序+双指针
代码:
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();

​    int 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;

  }

};


解题思路:

首先,对两个数组进行排序,然后使用两个指针index1,index遍历两个数组。

初始时,两个指针分别指向两个数组的头部,每次比较两个指针指向的两个数组的数字,如果两个数字不相等,则指向较小数字的指针右移一位,当两个指针指向的数字相等时,将该数字添加到答案,并将两个指针都右移一位,当至少有一个指针超出数组范围时,遍历结束。

猜你喜欢

转载自blog.csdn.net/Duba_zhou/article/details/124785788