首页 > 代码库 > 【LeetCode】 349. Intersection of Two Arrays 解题小结
【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 解题小结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。