码迷,mamicode.com
首页 > 编程语言 > 详细

滑动窗口算法

时间:2018-07-19 14:49:20      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:char   bst   long   序列   hashset   max   length   remove   算法   

滑动窗口这种解题思路在平常的应用中很常见。

描述

给定一个字符串,找出不含有重复字符的最长子串的长度。

示例:

给定 "abcabcbb" ,没有重复字符的最长子串是 "abc" ,那么长度就是3。

给定 "bbbbb" ,最长的子串就是 "b" ,长度是1。

给定 "pwwkew" ,最长子串是 "wke" ,长度是3。请注意答案必须是一个子串,"pwke" 是 子序列 而不是子串。

解题思路

 public int lengthOfLongestSubstring(String s) {
       int n = s.length();
        Set<Character> set = new HashSet<>();
        int ans = 0, i = 0, j = 0;
        while (i < n && j < n) {
            // try to extend the range [i, j]
            if (!set.contains(s.charAt(j))){
                set.add(s.charAt(j++));
                ans = Math.max(ans, j - i);
            }
            else {
                set.remove(s.charAt(i++));
            }
        }
        return ans;
    }

滑动窗口算法

标签:char   bst   long   序列   hashset   max   length   remove   算法   

原文地址:http://blog.51cto.com/7258185/2147167

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