-
Notifications
You must be signed in to change notification settings - Fork 0
/
350.两个数组的交集-ii.cpp
81 lines (75 loc) · 1.75 KB
/
350.两个数组的交集-ii.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* @lc app=leetcode.cn id=350 lang=cpp
*
* [350] 两个数组的交集 II
*
* https://leetcode.cn/problems/intersection-of-two-arrays-ii/description/
*
* algorithms
* Easy (57.72%)
* Likes: 1050
* Dislikes: 0
* Total Accepted: 524.4K
* Total Submissions: 908.4K
* Testcase Example: '[1,2,2,1]\n[2,2]'
*
* 给你两个整数数组 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]
*
*
*
* 提示:
*
*
* 1 <= nums1.length, nums2.length <= 1000
* 0 <= nums1[i], nums2[i] <= 1000
*
*
*
*
* 进阶:
*
*
* 如果给定的数组已经排好序呢?你将如何优化你的算法?
* 如果 nums1 的大小比 nums2 小,哪种方法更优?
* 如果 nums2 的元素存储在磁盘上,内存是有限的,并且你不能一次加载所有的元素到内存中,你该怎么办?
*
*
*/
// @lc code=start
#include <vector>
#include <unordered_map>
using namespace std;
class Solution {
public:
vector<int> intersect(vector<int>& nums1, vector<int>& nums2) {
vector<int> res;
unordered_map<int, int> map;
for(auto num : nums1) {
map[num]++;
}
for(auto num : nums2) {
if(map[num] > 0) {
res.push_back(num);
map[num]--;
}
}
return res;
}
};
// @lc code=end