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

【中级算法】3. 无重复字符的最长子串

时间:2018-06-21 11:39:31      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:TE   子序列   max   题目   ring   cpp   abc   turn   子串   

题目:

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

示例:

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

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

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

  

解题:

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
       vector<int> visited(256,-1);
       int res = 0;
       int tmp = 0;
       
       for(int i = 0;i < s.size(); ++i){
           if(visited[s[i]] == -1){
               tmp++;
               visited[s[i]] = i;
           }else{
               res = max(tmp,res);
               int next = i - visited[s[i]];
               for(int j = i-tmp;j <= visited[s[i]]; ++j){
                   visited[s[j]] = -1;
               }
               tmp = next;
               visited[s[i]] = i;
               
           }
       }
       res = max(res,tmp);
        
        return res;
    }
};

  

【中级算法】3. 无重复字符的最长子串

标签:TE   子序列   max   题目   ring   cpp   abc   turn   子串   

原文地址:https://www.cnblogs.com/mikemeng/p/9206949.html

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