LZ_Jaja

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Given a string, find the length of the longest substring without repeating characters.

Examples:

Given "abcabcbb", the answer is "abc", which the length is 3.

Given "bbbbb", the answer is "b", with the length of 1.

Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.

 1 class Solution {
 2 public:
 3     int lengthOfLongestSubstring(string s) {
 4         int l = s.length();
 5         map<char, int> m;
 6         int innerL = 0;
 7         int maxL = 0;
 8         for(int i=0; i<l; i++) {
 9             map<char, int>::iterator it = m.find(s[i]);
10             if(it != m.end()) {
11                 if(maxL < innerL) {
12                     maxL = innerL;
13                 }
14                 i = i - innerL + it->second - 1;
15                 innerL = 0;
16                 m.erase(m.begin(), m.end());
17             }
18             else {
19                 innerL += 1;
20                 m[s[i]] = innerL;
21             }
22         }
23         return (innerL < maxL) ? maxL : innerL;
24     }
25 };

 

posted on 2018-07-27 22:57  LZ_Jaja  阅读(168)  评论(0编辑  收藏  举报