博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode - Subarray sum equals k
阅读量:5815 次
发布时间:2019-06-18

本文共 1068 字,大约阅读时间需要 3 分钟。

Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k.

Example 1:

Input:nums = [1,1,1], k = 2Output: 2

 

Note:

  1. The length of the array is in range [1, 20,000].
  2. The range of numbers in the array is [-1000, 1000] and the range of the integer k is [-1e7, 1e7].

解法一:利用sum之间的差暴力搜索

class Solution {    public int subarraySum(int[] nums, int k) {        if (nums == null || nums.length == 0)            return 0;        int len = nums.length;        int[] sum = new int[len+1];        for (int i=0; i

解法二:利用map建立sum和出现次数cnt的映射关系

class Solution {    public int subarraySum(int[] nums, int k) {        if (nums == null || nums.length == 0)            return 0;        Map
map = new HashMap<>(); map.put(0, 1); int sum = 0, cnt = 0; for (int num : nums) { sum += num; cnt += map.getOrDefault(sum-k, 0); map.put(sum, map.getOrDefault(sum, 0)+1); } return cnt; }}

 第二种解法耗时更少

 

转载于:https://www.cnblogs.com/wxisme/p/9791771.html

你可能感兴趣的文章
oracle导入导出小记
查看>>
聊一聊log4j2配置文件log4j2.xml
查看>>
NeHe OpenGL教程 第七课:光照和键盘
查看>>
修改上一篇文章的node.js代码,支持默认页及支持中文
查看>>
Php实现版本比较接口
查看>>
删除设备和驱动器中软件图标
查看>>
第四章 TCP粘包/拆包问题的解决之道---4.1---
查看>>
html语言
查看>>
从源码看集合ArrayList
查看>>
spring-boot支持websocket
查看>>
菜鸟笔记(一) - Java常见的乱码问题
查看>>
我理想中的前端工作流
查看>>
记一次Git异常操作:将多个repository合并到同一repository的同一分支
查看>>
CodeIgniter 3.0 新手捣鼓源码(一) base_url()
查看>>
Chrome 广告屏蔽功能不影响浏览器性能
查看>>
vSphere 6将于2月2日全球同步发表
查看>>
Android状态栏实现沉浸式模式
查看>>
让你的APP实现即时聊天功能
查看>>
iOS 绝对路径和相对路径
查看>>
使用Openfiler搭建ISCSI网络存储
查看>>