LeetCode #3 简单题
Posted error408
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode #3 简单题相关的知识,希望对你有一定的参考价值。
题目: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。
题解: i j 分别记录目标字符串的左右边界。对当前字符 x,如果前面出现过,则更新左边界为上次出现位置的下一个,然后更新当前字符 x 的位置,遍历过程中记录一下 j - i + 1的最大值就好了。
class Solution public: int lengthOfLongestSubstring(string s) int ans = 0; int len = s.size(); std::map<int, int> pos; for (int i = 0, j = 0; j < len; ++j) if (pos.find(s[j]) != pos.end()) int left = pos[s[j]]; i = left > i ? left : i; ans = (j - i + 1) > ans ? (j - i + 1) : ans; pos[s[j]] = j + 1; return ans; ;
以上是关于LeetCode #3 简单题的主要内容,如果未能解决你的问题,请参考以下文章