您的位置:首页 > 其它

[leetcode]Longest Substring with At Most Two Distinct Characters

2014-11-26 15:08 453 查看
很明显的2 pointer问题。。。当满足条件的时候后面的指针加,不满足条件的时候前面的指针加,直到满足条件。。。

class Solution {
public:
int lengthOfLongestSubstringTwoDistinct(string s) {
int start = 0, cnt = 0;
int char_set[256] = {0};
int ans = 0;
for (int i = 0; i < s.size(); i++) {
if (char_set[s[i]]++ == 0) cnt++;
while (cnt > 2) {
char_set[s[start]]--;
if (char_set[s[start++]] == 0) cnt--;
}
ans = max(i - start + 1, ans);
}
return ans;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: