[LeetCode] 350. 两个数组的交集 II
2021-04-11 17:25
标签:数字 cti 数组 info count ems tco ble src 一开始的想法是:用一个map来存储长度较长的数组中的所有数字,再与较短的数组中的数字比较,若出现在较长数组中,则map中的数量减一,最后用原始map与比较结束后的map比较,得到重复的数字有哪些。 答案的解法: 用一个数组来存储比较的结果: [LeetCode] 350. 两个数组的交集 II 标签:数字 cti 数组 info count ems tco ble src 原文地址:https://www.cnblogs.com/doyi111/p/13358966.htmlclass Solution {
public int[] intersect(int[] nums1, int[] nums2) {
// 将长度短的数组换到前面。
if (nums1.length > nums2.length) {
return intersect(nums2, nums1);
}
// 创建 HashMap 记录 nums1 中每个元素出现的次数。
Map
文章标题:[LeetCode] 350. 两个数组的交集 II
文章链接:http://soscw.com/index.php/essay/74352.html