C++ unordered_map/map的key

本文通过LeetCode的2001题为例,探讨了在C++中`unordered_map`和`map`的区别。`unordered_map`不支持`pair`或`vector`作为key,而`map`则可以。为使`unordered_map`能使用`pair`作为key,需要自定义哈希函数。解法展示了如何在不同场景下选择合适的数据结构来存储和处理数据。
摘要由CSDN通过智能技术生成
unordered_map可以使用基本类型(int等),string作为key,不能使用pair vector作为key,map可以使用基本类型,string和pair vector作为key。

leetcode-2001为例

// 解法1
class Solution {
public:
    int gcd(int a, int b) {
        if (a < b) return gcd(b, a);
        if (a % b == 0) return b;
        return gcd(b, a%b);
    }
    
    // 使用这种嵌套的方式表示两个key
    unordered_map<int, unordered_map<int, long long>> cnt;
    
    long long interchangeableRectangles(vector<vector<int>>& rectangles) {
        for (auto r : rectangles) {
            int c = gcd(r[0], r[1]);
            r[0] /= c;
            r[1] /= c;
            
            cnt[r[0]][r[1]]++;
        }
        
        long long ans = 0;
        
        for (auto iter = cnt.begin(); iter != cnt.end(); iter++) {
            for (auto i = iter->second.begin(); i != iter->second.end(); i++) {
                ans += i->second * (i->second - 1) / 2;
            }
        }
        
        
        return ans;
    }
};
// 解法2
class Solution {
public:
    int gcd(int a,int b)
    {
        if(b == 0)
            return a;
        return gcd(b,a%b);
    }
    long long interchangeableRectangles(vector<vector<int>>& rectangles) 
    {
    	// map可以直接使用pair作为key
        map<pair<int, int>, int, hash_pair> m;
        long long ans = 0;
        for(int i=0;i<rectangles.size();i++)
        {
            int x = rectangles[i][0];
            int y = rectangles[i][1];
            int g = gcd(x,y);
            x /= g;
            y /= g;
            ans += m[make_pair(x,y)];
            m[make_pair(x,y)]++;
        }
        return ans;
    }
};


// 解法3 
// unordered_map要想使用pair作为key,必须要实现一个hash
struct hash_pair { 
    template <class T1, class T2> 
    size_t operator()(const pair<T1, T2>& p) const
    { 
        auto hash1 = hash<T1>{}(p.first); 
        auto hash2 = hash<T2>{}(p.second); 
        return hash1 ^ hash2; 
    } 
}; 

class Solution {
public:
    int gcd(int a,int b)
    {
        if(b == 0)
            return a;
        return gcd(b,a%b);
    }
    long long interchangeableRectangles(vector<vector<int>>& rectangles) 
    {
        unordered_map<pair<int, int>, int, hash_pair> m;
        long long ans = 0;
        for(int i=0;i<rectangles.size();i++)
        {
            int x = rectangles[i][0];
            int y = rectangles[i][1];
            int g = gcd(x,y);
            x /= g;
            y /= g;
            ans += m[make_pair(x,y)];
            m[make_pair(x,y)]++;
        }
        return ans;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值