给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。
示例 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
/**
* @param {string} s
* @return {number}
*/
var lengthOfLongestSubstring = function(s) {
if (s.length == 0) {
return 0;
}
var maxLength = 0, beginInex = 0, currentIndex = 0;
var strMap = new Map();
while(currentIndex < s.length) {
const char = s.charAt(currentIndex);
const repeatedCharIndex = strMap.get(char);
if (repeatedCharIndex != undefined) {
const length = currentIndex - beginInex;
if(length > maxLength) {
maxLength = length;
}
while(beginInex < repeatedCharIndex + 1) {
strMap.delete(s[beginInex]);
beginInex++;
}
}
strMap.set(char, currentIndex);
currentIndex++;
}
const length = currentIndex - beginInex;
if (length > maxLength) {
maxLength = length;
}
return maxLength;
};
思路:
遍历字符串,把出现过的字符和索引存到Map里,如果发现当前的字符出现过,那么说明出现了重复字符,则计算上一个字符出现位置到当前位置的长度,然后把Map里上一个字符位置前的所有字母索引移除,最后返回最大长度
————————
想要学习Cocos的同学,欢迎关注我的零基础Cocos教程
https://ke.qq.com/course/313749
网友评论