题解 | #连续子数组的最大和#

最长无重复子数组

http://www.nowcoder.com/practice/b56799ebfd684fb394bd315e89324fb4

import java.util.*;


public class Solution {
    /**
     * 
     * @param arr int整型一维数组 the array
     * @return int整型
     */
    public int maxLength (int[] arr) {
        // write code here
        if(arr.length == 0){
            return 0;
        }
        HashMap<Integer,Integer> hm = new HashMap<>();
        int max = 0;
        for(int i = 0 ,j=0;i < arr.length; i++){
            if(hm.containsKey(arr[i])){
                j = Math.max(j,hm.get(arr[i])+1);
            }
            hm.put(arr[i],i);
            max = Math.max(max,i-j+1);
        }
        return max;
    }
}

全部评论

相关推荐

比亚迪汽车新技术研究院 硬件工程师 总包21左右 硕士
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务