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

文章介绍了如何使用C++中的set和map数据结构来找到两个整数数组的交集。通过unordered_set实现无序且去重的交集查找,而map则用于记录每个元素出现的次数以防止重复。两种方法都利用了哈希表的高效查询特性。
摘要由CSDN通过智能技术生成

题目描述

在这里插入图片描述
在这里插入图片描述
原题链接:349. 两个数组的交集

一、使用set实现

Set的特点
image.png
当我们要使用集合来解决哈希问题的时候,优先使用unordered_set,因为它的查询和增删效率是最优的,如果需要集合是有序的,那么就用set,如果要求不仅有序还要有重复数据的话,那么就用multiset。

image.png

class Solution {
public:
    vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {        
        vector<int> res;
        unordered_set<int> record(nums1.begin(), nums1.end());  // 将nums1中元素去重的存放到record中
        for(int num : nums2) {          // 从nums2中获取元素
            if(record.count(num)){      // 若在nums1中出现过
                res.push_back(num);     // 将相交元素加入到res中
                record.erase(num);      // 从record中删除,避免重复记录
            }   
        }

        return res;
    }
};

二、使用map实现

Map的特点
image.png
Set相当于是Value为1的Hash表

class Solution {
public:
    vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {        
        vector<int> res;
        unordered_map<int, int> record;
        for(int i = 0; i < nums1.size(); i++) {     // 将nums1中元素作为record的key,进行Hash映射
            record[nums1[i]] = 1;
        }
        for(int i = 0; i < nums2.size(); i++) {     // 寻找橡胶集合加入
            if(record[nums2[i]]-- == 1)     res.push_back(nums2[i]);
        }

        return res;
    }
};

参考文章:349. 两个数组的交集

Python
方法一

class Solution:
    def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
        return list(set(nums1) & set(nums2))


方法二

class Solution:
    def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
        nums1 = list(set(nums1))
        res = []

        for i in range(len(nums1)):
            if nums1[i] in nums2:
                res.append(nums1[i])
        
        return res


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

辰阳星宇

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

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

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

打赏作者

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

抵扣说明:

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

余额充值