leetcode 和为 k 的子数组

Posted Wh1t3zZ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 和为 k 的子数组相关的知识,希望对你有一定的参考价值。

 

 

两题如出一辙:https://www.cnblogs.com/rookie-acmer/p/15164840.html

class Solution {
public:
    int subarraySum(const vector<int>& nums, const int &k) {
        unordered_map<int, int> cnt;
        int ret = 0, preSum = 0;
        cnt[0] = 1;     // 初始状态
        for(int i = 0; i < nums.size(); ++ i) {
            preSum += nums[i];
            ret += cnt[preSum - k];
            ++ cnt[preSum];
        }
        return ret;
    }
};

 

以上是关于leetcode 和为 k 的子数组的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-560. 和为 K 的子数组

Leetcode 560.和为k的子数组

LeetCode 560. 和为 K 的子数组

《LeetCode之每日一题》:52.和为K的子数组

LeetCode 560.和为K的子数组

[LeetCode]560. 和为K的子数组(前缀和)