码迷,mamicode.com
首页 > 其他好文 > 详细

Longest Substring Without Repeating Characters

时间:2017-06-17 19:36:29      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:logs   sub   htable   rac   tar   ring   for   without   char   

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        int hashTable[255];
        fill(hashTable, hashTable+255, -1);
        
        int start = 0, maxLen = 0;
        for(int i=0; i<s.size(); ++i)
        {
            if(hashTable[s[i]] >= start)
            {
                maxLen = max(maxLen, i-start);
                start = hashTable[s[i]]+1;
            }
            
            hashTable[s[i]] = i;
        }
        
        return max(maxLen, (int)s.size()-start);
    }
};

 

Longest Substring Without Repeating Characters

标签:logs   sub   htable   rac   tar   ring   for   without   char   

原文地址:http://www.cnblogs.com/chengyuz/p/7040921.html

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