首页 > 其他 > 详细

LeetCode:Longest Substring Without Repeating Characters

时间:2014-09-18 14:40:44      阅读:227      评论:0      收藏:0      [点我收藏+]

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

 

 1 class Solution {
 2 public:
 3     int lengthOfLongestSubstring(string s) {
 4         int asc[180]={-1},max=0,n=0,i=0,j;
 5         for(j=0;j<180;j++)
 6                 asc[j]=-1;
 7         while(i<s.size())
 8         {
 9             if(asc[s[i]]==-1)
10             {
11                 asc[s[i]]=i;
12                 n++;
13                 if(n>max)
14                     max=n;
15             }
16             else
17             {
18                 
19                 int k=asc[s[i]]; 
20                 n=i-k;
21                 for(j=0;j<180;j++)
22                 {
23                     if(asc[j]>-1&&asc[j]<k)
24                         asc[j]=-1;
25                 }
26                 asc[s[i]]=i;
27             }
28             i++;
29         }
30         return max;
31     }
32 };

 

LeetCode:Longest Substring Without Repeating Characters

原文:http://www.cnblogs.com/levicode/p/3979081.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!