LeetCode:Longest Substring Without Repeating Characters
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 };
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步