码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 525: Continuous Array

时间:2017-09-03 16:39:33      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:ash   mat   ber   member   this   rem   code   starting   span   

Note: 1. Remember to intial (0, -1) since this kind of problems need a starting point.

class Solution {
    public int findMaxLength(int[] nums) {
        if (nums.length < 2) {
            return 0;
        } 
        
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] == 0) {
                nums[i] = -1;
            }
        }
        
        Map<Integer, Integer> sumMap = new HashMap<>();
        sumMap.put(0, -1);
        int sum = 0;
        int result = 0;
        for (int i = 0; i < nums.length; i++) {
            sum += nums[i];
            if (!sumMap.containsKey(sum)) {
                sumMap.put(sum, i);
            } else {
                result = Math.max(result, i - sumMap.get(sum));
            }
        }
        return result;
    }
}

 

LeetCode 525: Continuous Array

标签:ash   mat   ber   member   this   rem   code   starting   span   

原文地址:http://www.cnblogs.com/shuashuashua/p/7469799.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!