-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path01-length-of-longest-substring.ts
81 lines (68 loc) · 3.48 KB
/
01-length-of-longest-substring.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// @ts-nocheck
/**
* 题目名称:无重复字符的最长子串(类似题目:最长无重复子数组)
* leetcode 题目: https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/
* leetcode 题解: https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/solution/by-hovinghuang-qugo/
* 牛客网 题目: https://www.nowcoder.com/practice/b56799ebfd684fb394bd315e89324fb4?tpId=295&tqId=1008889&ru=/exam/oj&qru=/ta/format-top101/question-ranking&sourceUrl=%2Fexam%2Foj%3Ftab%3D%25E7%25AE%2597%25E6%25B3%2595%25E7%25AF%2587%26topicId%3D295
* 牛客网 题解: https://blog.nowcoder.net/n/fce41b44190449f18c605a0a41db9c78
*/
/**
* 解法一:滑动窗口(reduce累加器)
* 思路:
* (1)先判断字符串 s 的长度,如果 s.length <= 1 直接返回 s.length
* (2)将字符串 s 转成数组,这样就可以用数组的 reduce 累加器
* (3)reduce 滑动窗口过程处理(详细过程看以下代码),返回最长子串的长度 maxLen
* 时间复杂度:O(n),n 代表字符串长度,reduce 会将字符串的每一个字符都遍历一遍
* 空间复杂度:O(n),n 代表字符串长度,将字符串转成了数组(额外空间)
*/
function lengthOfLongestSubstring(s: string): number {
if (s.length <= 1) return s.length
let maxLen = 0
const strArr = s.split('')
strArr.reduce((total, value) => {
const index = total.indexOf(value)
// 拼接到 total 尾部
total += value
if (index === -1) {
// 如果该字符没有在 total 中出现过,获取目前为止滑动窗口的最大值
maxLen = Math.max(total.length, maxLen)
} else {
// 如果该字符有在 total 中出现过,则剔除掉 total 中 0 ~ index 的字符
total = total.slice(index + 1)
}
return total
}, '')
return maxLen
};
/**
* 解法二:滑动窗口(双指针&哈希)
* 思路:
* (1)先判断字符串 s 的长度,如果 s.length <= 1 直接返回 s.length
* (2)窗口左右界都从数组首部开始,每次窗口优先右移右界,并统计进入窗口的元素的出现频率。
* (3)一旦右界元素出现频率大于1,就需要右移左界直到窗口内不再重复,将左边的元素移除窗口的时候
* 同时需要将它在哈希表中的频率减1,保证哈希表中的频率都是窗口内的频率。
* (4)每轮循环维护最长子串的长度 maxLen
* 时间复杂度:O(n),外循环窗口右界从数组首右移到数组尾,内循环窗口左界同样如此,因此复杂度为O(n + n) = O(n)
* 空间复杂度:O(n),最坏情况整个数组都是不重复的,哈希表的长度就是数组长度
*/
function lengthOfLongestSubstring(s: string): number {
if (s.length <= 1) return s.length
let maxLen = 0
const map = new Map()
// 设置窗口左右边界
for (let left = 0, right = 0; right < s.length; right++) {
if (map.has(s[right])) {
// 窗口右移进入哈希表统计次数
map.set(s[right], map.get(s[right]) + 1)
} else {
map.set(s[right], 1)
}
// 出现次数大于1,则窗口内有重复
while (map.get(s[right]) > 1) {
// 窗口左移,同时减去该数字出现的次数
map.set(s[left], map.get(s[left++]) - 1)
}
maxLen = Math.max(maxLen, right - left + 1)
}
return maxLen
};