71、【哈希表】leetcode——350. 两个数组的交集 II(C++/Python版本)

该文介绍了如何利用C++中的unordered_map数据结构解决两个数组交集的问题。在遍历nums1时,将元素作为键并增加计数,然后遍历nums2,如果键存在于map中且值不为0,则将元素添加到结果中并减少计数。这种方法的时间复杂度和空间复杂度均为O(n)。
摘要由CSDN通过智能技术生成

题目描述

在这里插入图片描述
在这里插入图片描述

原题链接:350. 两个数组的交集 II

解题思路

因为交集中不去重,可存在重复元素,因此采用unordered_map,将元素作为下标Key,每有一个元素,则对应的Value加一。寻找交集时,遍历存储过的Hash表,Value不为0时,就将其加入到res中,然后将该Key对应的Value减一。

class Solution {
public:
    vector<int> intersect(vector<int>& nums1, vector<int>& nums2) {
        vector<int> res;
        unordered_map<int, int> record;
        for(int num : nums1) {
            record[num]++;            
        }
        for(int i = 0; i < nums2.size(); i++) {
            if(record[nums2[i]] != 0) {
                res.push_back(nums2[i]);
                record[nums2[i]]--;
            }
        }
        return res;
    }
};

Python

class Solution:
    def intersect(self, nums1: List[int], nums2: List[int]) -> List[int]:
        nums1_dict = Counter(nums1)
        res = []
        for num in nums2:
            if num in nums1_dict.keys():
                res.append(num)
                nums1_dict[num] -= 1
                if nums1_dict[num] == 0:
                    del nums1_dict[num]
        
        return res




        

时间复杂度 O ( n ) O(n) O(n)
空间复杂度 O ( n ) O(n) O(n)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

辰阳星宇

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值