LeetCode 3. Longest Substring Without Repeating Characters
Posted millerkevin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 3. Longest Substring Without Repeating Characters相关的知识,希望对你有一定的参考价值。
Description:
Given a string, find the length of the longest substring without repeating characters.
Example 1:
Input: "abcabcbb"
Output: 3
Explanation: The answer is "abc", with the length of 3.
Example 2:
Input: "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.
Example 3:
Input: "pwwkew"
Output: 3
Explanation: The answer is "wke", with the length of 3.
Note that the answer must be a substring, "pwke" is a subsequence and not a substring.
翻译:
给定一个字符串,找出其中不含有重复字符的 最长子串 的长度。
Kotlin代码实现①
public int lengthOfLongestSubstring(String s) {
Map<Character, Integer> map = new HashMap<Character, Integer>();
char[] charArr = s.toCharArray();
int max = 0;
int count = 0;
for (int i = 0; i < charArr.length; i++) {
Integer last = map.get(charArr[i]);
if (last == null) {
count++;
if (count > max) {
max = count;
}
} else {
int start=i-count;
for(int j=start;j<last;j++){
map.remove(charArr[j]);
count--;
}
}
map.put(charArr[i], i);
}
return max;
}
Kotlin代码实现②
fun lengthOfLongestSubstring(s: String): Int {
val n = s.length
val set = HashSet<Char>()
var max = 0
var i = 0
var j = 0
while (i < n && j < n) {
if (!set.contains(s[j])) {
set.add(s[j++])
max = Math.max(max, j - i)
} else {
set.remove(s[i++])
}
}
return max
}
参考:
https://leetcode.com/problems/longest-substring-without-repeating-characters
以上是关于LeetCode 3. Longest Substring Without Repeating Characters的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 3. Longest Substring Without Repeating Characters
LeetCode 3. Longest Substring Without Repeating
3. 没有重复字母的最长子串 [leetcode 3: Longest Substring Without Repeating Characters]
3. 没有重复字母的最长子串 [leetcode 3: Longest Substring Without Repeating Characters]
leetcode longest consecutive sequence
leetcode 3. Longest Substring Without Repeating Characters (Python版)