导航

LeetCode 349. Intersection of Two Arrays

Posted on 2016-09-20 22:56  CSU蛋李  阅读(101)  评论(0编辑  收藏  举报

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

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

Note:

  • Each element in the result must be unique.
  • The result can be in any order.

 

 

Subscribe to see which companies asked this question

题目要求:给两个数组,求他们的合集
 
class Solution {
public:
    vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
        map<int, int> map;
        vector<int> ret;
        for (auto &e : nums1)
            map[e] = 1;
        for (auto &e : nums2)
        {
            if (map.find(e)!=map.end()&&map[e]==1)
            {
                ret.push_back(e);
                ++map[e];
            }
        }
        return ret;
    }
};