C++刷leetcode(3. 无重复字符的最长子串)【双指针】
本帖最后由 糖逗 于 2020-5-8 17:50 编辑题目描述:
给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。
示例 1:
输入: "abcabcbb"
输出: 3
解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
示例 2:
输入: "bbbbb"
输出: 1
解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
示例 3:
输入: "pwwkew"
输出: 3
解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。
请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
#include <iostream>
#include <string>
#include <map>
#include <vector>
using namespace std;
int solution(string s) {
if(s.size() == 1||s.size() == 0) return s.size();
map<char, int> temp;
int left = 0, len = 0;
for(int right = 0; right < s.size(); right++){
if(temp.empty() || temp.count(s) == 0){
temp] = right;
len = max(right - left + 1, len);
continue;
}
if(temp] >= left){
len = max(len , right - left);
if(temp] != (right - 1)){
left = temp] + 1;
}
else{
left = right;
}
temp] = right;
}
else{
temp] = right;
len = max(right - left + 1, len);
}
}
return len;
}
int main(void){
string input;
cin >> input;
cout << solution(input) << endl;
return 0;
}
注意事项:
1、解题思路是双指针,然后就是各种调试各种踩坑。
页:
[1]