码迷,mamicode.com
首页 > 编程语言 > 详细

349 Intersection of Two Arrays 两个数组的交集

时间:2018-04-15 11:50:58      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:int   section   solution   res   www.   rip   一个   and   输出   

给定两个数组,写一个函数来计算它们的交集。
例子:
 给定 num1= [1, 2, 2, 1], nums2 = [2, 2], 返回 [2].
提示:
    每个在结果中的元素必定是唯一的。
    我们可以不考虑输出结果的顺序。
详见:https://leetcode.com/problems/intersection-of-two-arrays/description/
C++:

class Solution {
public:
    vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
        set<int> s(nums1.begin(),nums1.end()),res;
        for(auto num:nums2)
        {
            if(s.count(num))
            {
                res.insert(num);
            }
        }
        return vector<int>(res.begin(),res.end());
    }
};

 参考:https://www.cnblogs.com/grandyang/p/5507129.html

349 Intersection of Two Arrays 两个数组的交集

标签:int   section   solution   res   www.   rip   一个   and   输出   

原文地址:https://www.cnblogs.com/xidian2014/p/8836549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!