Skip to content

Latest commit

 

History

History
94 lines (73 loc) · 2.76 KB

3-longest-substring-without-repeating-characters.md

File metadata and controls

94 lines (73 loc) · 2.76 KB

3. Longest Substring Without Repeating Characters - 无重复字符的最长子串

给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。

示例 1:

输入: "abcabcbb"
输出: 3 
解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。

示例 2:

输入: "bbbbb"
输出: 1
解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。

示例 3:

输入: "pwwkew"
输出: 3
解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。
     请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。

题目标签:Hash Table / Two Pointers / String / Sliding Window

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
java 23 ms 39.3 MB
public class Solution {
    public int lengthOfLongestSubstring(String s) {
        int n = s.length();
        int res = 0;
        HashMap<Character, Integer> map = new HashMap<>();
        for (int i = 0, j = 0; j < n; j++) {
            if (map.containsKey(s.charAt(j)) && map.get(s.charAt(j)) >= i) {
                i = map.get(s.charAt(j)) + 1;
            }
            map.put(s.charAt(j), j);
            res = Math.max(res, j - i + 1);
        }
        return res;
    }
}
Language Runtime Memory
cpp 20 ms N/A
class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        int res = 0;
        deque<char> sub;
        unordered_set<char> look;
        for(char c : s){
            if(look.count(c)){
                res = max(res, (int)sub.size());
                while(true){
                    char b = sub.front();
                    sub.pop_front();
                    look.erase(b);
                    if(b == c){
                        break;
                    }
                }
            }
            sub.push_back(c);
            look.insert(c);
        }
        res = max(res, (int)sub.size());
        return res;
    }
};