leetcode 无重复字符的最长子串

leetcode 无重复字符的最长子串

 

 

滑动窗口通用解法。不赘述。贴代码:

    public int lengthOfLongestSubstring(String s) {
        Map<Character,Integer> window=new HashMap<>();
        int left=0,right=0;
        int length=0;
        while(right<s.length())
        {
            char r=s.charAt(right);
            right++;
            window.put(r,window.getOrDefault(r,0)+1);
            while(window.get(r)>1)
            {
                char d=s.charAt(left);
                left++;
                window.replace(d,window.get(d)-1);    
            }
            length=Math.max(length,right-left);
        }

        return length;

    }

 

leetcode 无重复字符的最长子串

上一篇:单链表 求单链表有效节点个数 不包括头节点


下一篇:GO的内置数据结构-channel