[哈希表] 刷题合集

参考

https://www.bilibili.com/video/BV1Ra41177RB

LeetCode 2206. 将数组划分成相等数对

https://leetcode.cn/problems/divide-array-into-equal-pairs/

bool divideArray(int* nums, int numsSize){
    int hash[501];
    memset(hash, 0, sizeof(hash));
    bool ans = true;

    for (int i = 0; i < numsSize; i++) {
        hash[nums[i]]++;
    }
    
    for (int i = 0; i < 501; i++) {
        if (hash[i] & 1) {
            return false;
        }
    }
    return ans;
}

LeetCode 1832. 判断句子是否为全字母句

https://leetcode.cn/problems/check-if-the-sentence-is-pangram/

bool checkIfPangram(char * sentence){
    int n = strlen(sentence);
    // 字母 ASCII 码均小于 128
    int hash[128];
    memset(hash, 0, sizeof(hash));

    for (int i = 0; i < n; i++) {
        hash[sentence[i]]++;
    }

    for (int i = 'a'; i <= 'z'; i++) {
        if (hash[i] == 0) {
            return false;
        }
    }

    return true;
}

LeetCode 1512. 好数对的数目

https://leetcode.cn/problems/number-of-good-pairs/
遍历 hash 的方法:

int numIdenticalPairs(int* nums, int numsSize){
    int hash[101];
    memset(hash, 0, sizeof(hash));
    int ans = 0;

    for (int i = 0; i < numsSize; i++) {
        hash[nums[i]]++;
    }
    
    for (int i = 0; i < 101; i++) {
        if (hash[i] > 1) {
            ans += (hash[i] - 1) * hash[i] / 2;
        }
    }

    return ans;
}   

更为方便的一次遍历(每次加入一个新的数,只需加上和前面所有相同数匹配的次数,即加上原来 hash 里面的值):

int numIdenticalPairs(int* nums, int numsSize){
    int hash[101];
    memset(hash, 0, sizeof(hash));
    int ans = 0;

    for (int i = 0; i < numsSize; i++) {
        ans += hash[nums[i]];
        hash[nums[i]]++;
    }
    return ans;
}   

LeetCode 2006. 差的绝对值为 K 的数对数目

https://leetcode.cn/problems/count-number-of-pairs-with-absolute-difference-k/
与 “1512. 好数对的数目” 类似的做法:

int countKDifference(int* nums, int numsSize, int k){
    int hash[101];
    memset(hash, 0, sizeof(hash));
    int ans = 0;

    for (int i = 0; i < numsSize; i++) {
        // 两个判断是为了防止越界
        ans += nums[i] + k <= 100 ? hash[nums[i] + k] : 0;
        ans += nums[i] >= k ? hash[nums[i] - k] : 0;
        hash[nums[i]]++;
    }
    return ans;
}

LeetCode 930. 和相同的二元子数组

https://leetcode.cn/problems/binary-subarrays-with-sum/
先求前 n 项和数组 sum
sum[j] 为前 j 项的和,sum[j] - sum[i] 表示 a[i+1] ~ a[j] 的和。

即求满足 sum[j] == sum[i] + goal 的全部子串,其中 i ∈ [ − 1 , j − 1 ] i \in [-1, j-1] i[1,j1]

hash[ sum[i] + goal ] 表示 a[i+1] ~ a[j] 的所有满足条件子串数目。

初始化 hash[sum(-1) + goal] ++hash[goal] = 1
解法一:

int numSubarraysWithSum(int* nums, int numsSize, int goal){
    int hash[60001];
    memset(hash, 0, sizeof(hash));

    int ans = 0;
    // 计算前缀和,即前 n 项和
    for (int i = 1; i < numsSize; i++) {
        nums[i] += nums[i-1];
    }
    
    hash[goal] = 1;
    
    for (int i = 0; i < numsSize; i++) {
        ans += hash[nums[i]];
        hash[nums[i] + goal]++;
    }
    return ans;
}

解法二:使用省内存的写法

int numSubarraysWithSum(int* nums, int numsSize, int goal){
    int hash[30001];
    memset(hash, 0, sizeof(hash));

    int ans = 0;
    // 计算前缀和,即前 n 项和
    for (int i = 1; i < numsSize; i++) {
        nums[i] += nums[i-1];
    }
    
    hash[0] = 1;
    
    for (int i = 0; i < numsSize; i++) {
    	if (nums[i] >= goal) {
    		ans += hash[nums[i] - goal];
    	}
        hash[nums[i]]++;
    }
    return ans;
}

LeetCode 560. 和为 K 的子数组

https://leetcode.cn/problems/subarray-sum-equals-k/
数据较小可以直接用数组表示 hash,数据较大可以使用 C++ STL 中的 unordered_map

参考 930. 和相同的二元子数组 解法一(时间和空间稍大):

class Solution {
public:
    int subarraySum(vector<int>& nums, int k) {
        unordered_map <int , int> hash;
        int ans = 0;
        int n = nums.size();

        // 计算前 n 项和
        for (int i = 1; i < n; i++) {
            nums[i] += nums[i-1];
        }

        hash[k] = 1;

        for (auto &num : nums) {
            ans += hash[num];
            hash[num+k]++;
        }

        return ans;
    }
};

参考 930. 和相同的二元子数组 解法二(时间和空间稍小):

class Solution {
public:
    int subarraySum(vector<int>& nums, int k) {
        unordered_map<int, int> hash;
        hash[0] = 1;

        int ans = 0, sum_n = 0;

        for (auto& num : nums) {
            sum_n += num;
            if (hash.find(sum_n - k) != hash.end()) {
                ans += hash[sum_n - k];
            }
            hash[sum_n]++;
        }
        return ans;
    }
};

LeetCode 454. 四数相加 II

https://leetcode.cn/problems/4sum-ii/
只许判定 -(nums1[i] + nums2[j]) 是否与 (nums3[k] + nums4[l]) 相等即可。

class Solution {
public:
    int fourSumCount(vector<int>& nums1, vector<int>& nums2, vector<int>& nums3, vector<int>& nums4) {
        unordered_map <int, int> hash;
        
        int ans = 0;

        int a = nums1.size();
        int b = nums1.size();
        int c = nums1.size();
        int d = nums1.size();

        for (int i = 0; i < a; ++i){
            for (int j = 0; j < b; ++j) {
                hash[-(nums1[i] + nums2[j])]++;
            }
        }

        for (int i = 0; i < c; ++i){
            for (int j = 0; j < d; ++j) {
                ans += hash[nums3[i] + nums4[j]];
            }
        }

        return ans;
    }
};

LeetCode 160. 相交链表

https://leetcode.cn/problems/intersection-of-two-linked-lists/
解法一 :

@sylin:走到尽头见不到你,于是走过你来时的路,等到相遇时才发现,你也走过我来时的路。

class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        if (headA == NULL || headB == NULL) {
            return NULL;
        }
        ListNode *pa = headA;
        ListNode *pb = headB;
        
        while (pa != pb) {
            pa = pa == NULL ? headB : pa->next;
            pb = pb == NULL ? headA : pb->next;
        }

        return pa;
    }
};

解法二 hash

class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        unordered_map <ListNode *, bool> hash;
        ListNode *pa = headA;
        ListNode *pb = headB;

        while (pa) {
            hash[pa] = true;
            pa = pa->next;
        }
        while (pb) {
            if (hash.find(pb) != hash.end()) {
                return pb;
            }
            pb = pb->next;
        }

        return NULL;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

哇咔咔负负得正

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

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

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

打赏作者

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

抵扣说明:

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

余额充值