LeetCode 349. Intersection of Two Arrays 解题小结

Posted 医生工程师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 349. Intersection of Two Arrays 解题小结相关的知识,希望对你有一定的参考价值。

题目:

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

Example:
Given nums1 = [1, 2, 2, 1]nums2 = [2, 2], return [2].

第一次做的时候先将nums1存储在一个unordered_map里,然后对nums2的元素判断是否在unordered_map中,如果在,放入新的集合中,然后遍历集合,把结果输出,这样运算次数就是3N了;其实可以在第二次循环的时候判断这个元素在不在之前的unordered_map中,在的话不仅push进结果中,然后在该map中删除该元素,这样就不会出现重复了。

class Solution {
public:
    vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
        vector<int> res_its;
        unordered_set<int> setNums1(nums1.begin(), nums1.end());
        
        for (int i = 0; i < nums2.size(); i++){
            if (setNums1.find(nums2[i]) != setNums1.end()){
                res_its.push_back(nums2[i]);
                setNums1.erase(nums2[i]);
            }
        }
        
        return res_its;
    }
};

 

以上是关于LeetCode 349. Intersection of Two Arrays 解题小结的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode-349 Intersection of Two Arrays

Leetcode 349. Intersection of Two Arrays

LeetCode(349)Intersection of Two Arrays

leetcode349. 两个数组的交集

LeetCode_349. Intersection of Two Arrays

[leetcode]349.Intersection of Two Arrays