题解 | #最长不含重复字符的子字符串#

最长不含重复字符的子字符串

http://www.nowcoder.com/practice/48d2ff79b8564c40a50fa79f9d5fa9c7



public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param s string字符串 
     * @return int整型
     */
    public int lengthOfLongestSubstring (String s) {
        if(s.equals(" ")){
            return 1;
        }
        // write code here
        Map<Integer,Integer> map = new HashMap<>();
        int max = 0;
        int start = -1;
        for(int i = 0;i < s.length();i ++){
            if(map.containsKey(s.charAt(i)-'a') && map.get(s.charAt(i)-'a') > start){
                start = map.get(s.charAt(i)-'a');
            }
            map.put(s.charAt(i)-'a',i);
            max = Math.max(max,i - start);
        }
        return max;
    }
}
全部评论

相关推荐

Java大菜狗:纯纯招黑奴,一天还不到两百那么多要求,还不迟到早退,以为啥啊,给一点工资做一堆活,还以不拖欠员工工资为荣,这是什么值得骄傲的事情吗,纯纯***公司
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务