560. 和为K的子数组(前缀树+hash)

给定一个整数数组和一个整数 k,你需要找到该数组中和为 k 的连续的子数组的个数。

示例 1 :

输入:nums = [1,1,1], k = 2
输出: 2 , [1,1] 与 [1,1] 为两种不同的情况。
说明 :

数组的长度为 [1, 20,000]。
数组中元素的范围是 [-1000, 1000] ,且整数 k 的范围是 [-1e7, 1e7]。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/subarray-sum-equals-k
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
public:
    int subarraySum(vector<int>& nums, int k) {
        unordered_map<int,int> lutMap;
        int len = nums.size();
        int pre = 0;
        int res = 0;
        lutMap[0] = 1;
        for(int i = 0; i < len; i++)
        {
            pre += nums[i];
            if(lutMap.find(pre - k)!=lutMap.end())
            {
                res+=lutMap[pre-k];
            }
            lutMap[pre]++;
        }
        return res;
    }
};

  

上一篇:ESP8266-NodeMCU项目(三):ESP8266-NodeMCU+Blinker+红外模块(实现远程遥控空调)


下一篇:【LeetCode】560. 和为K的子数组