首页 > 代码库 > LeetCode - Longest Substring Without Repeating Characters
LeetCode - Longest Substring Without Repeating Characters
题目描述:
找出一个字符串中,不含有相同字符的最长子串。
做法:
开一个200的bool数组标记,Ascll码 是否已经出现过了。遍历即可。
AC代码:
class Solution {
int a[200];
public:
int lengthOfLongestSubstring(string s) {
int l = 0;int r =0;
int vmax = 0;
while(s[r]){
a[s[r]]++;
while(a[s[r]]==2){
a[s[l]]--;
l++;
}
vmax = max(vmax,r-l+1);
r++;
}
return vmax;
}
};
983 / 983 test cases passed.
Status: Accepted
Runtime: 22 ms
LeetCode - Longest Substring Without Repeating Characters
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。