[Leetcode 3, Medium] Longest Substring Without Repeating Characters

Problem:

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

Analysis:

The key of the solution of this problem is in how to find out the new start of a substring without repeated characters. The straightforward way is to set the new start to be the next position of the repeated character. This is because the substrings start from the old start to the repeated character will not be a valid solution (they contain the substring starts and ends by the repeated character which imply the length of substring will not be over the current substring). The tricky part of the solution is the using of hash table. The hash table takes the index of a character appears in the string. Only the indices after the start index of every round of loop are meaningful in the determination of a substring is valid. Then, we do not need to build a new hash table in every round.

Code:

C++:

 1     int lengthOfLongestSubstring(string s) {
 2         if(s.size() <= 1)
 3             return s.size();
 4
 5         int start = 0;
 6         int max_len = 1;
 7         vector<int> hash(256, -1);
 8         hash[s[start]] = start;
 9         for(int i = 1; i < s.size(); ++i) {
10             if(hash[s[i]] != -1 && hash[s[i]] >= start)
11                 start = hash[s[i]] + 1;
12
13             hash[s[i]] = i;
14
15             if(i - start + 1 >= max_len)
16                 max_len = i - start + 1;
17         }
18
19         return max_len;
20     }
时间: 2024-08-01 18:52:15

[Leetcode 3, Medium] Longest Substring Without Repeating Characters的相关文章

【LeetCode】003 Longest Substring Without Repeating Characters

题目:LeetCode 003 Longest Substring Without Repeating Characters 题意:给一个字符串,找到一个没有重复字符的最长子串. 样例:”bbbbb” 返回”b”的长度1:”abcabcbb”返回”abc”的长度3. 思路: 动态规划.dp[i]表示以第i个字符为结尾的无重复字符的子串的最长的长度,需要一个辅助数组idx[s[i]]记录字符当前字符s[i]上一次出现的位置,如果未出现过则为-1.所以得到如下的递推公式: 另外由于不确定字符串长度的

LeetCode Problem 3.Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the length is 3. Given "bbbbb", the answer is "b", with the length of 1.

LeetCode No.3 Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest subst

【LeetCode】3. Longest Substring Without Repeating Characters

题目: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the length is 3. Given "bbbbb", the answer is "b", with the length of

LeetCode 03: Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest subst

leetcode笔记:Longest Substring Without Repeating Characters

一. 题目描写叙述 Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the lon

Leetcode OJ #3 Longest Substring Without Repeating Characters

https://leetcode.com/problems/longest-substring-without-repeating-characters/ 题目: 找一个字符串的连续子串,使得该子串里不含相同字母,求符合条件的最长的子串的长度. 算法: DP----后缀思想 最初考虑过用二分答案,发现复杂度应该是O(n*n*log(n)),其中n*n验证一个答案对不对,log(n)是枚举可能答案的长度.然后就放弃,考虑DP dp[i]:以str[i]结尾的符合条件的子串的最大长度. 那么dp[i

LeetCode题解 #3 Longest Substring Without Repeating Characters

找出字符串中没有相同字符的的最长串 注意这里的 Characters指的是字符,不是字母,就是说|/?~这样的字符都会出现,所以要用到ASCII码 最简单的方法是,从第一个字符开始,往后一个个判断,里面有没有重复的字符,如果重复了则记录下长度. 例如:abcabcbb 第一次:abc 重复于a  长度3 第二次:bca 重复与b  长度3 第三次:cab 重复与c  长度3 ...... 但这种方法很耗时 如果是 abcdefghijk这种 第一次就找到了的 abcdefghijk 但还要第二次

LeetCode:3.Longest Substring Without Repeating Characters

思路:看到题目首先想到最大字符串匹配KMP算法 1 public static int lengthOfLongestSubstring(String s) { 2 int maxLength = 0; 3 StringBuilder sb = new StringBuilder(s); 4 a:for(int i = 0;i<sb.length();i++){ 5 StringBuilder sb2 = new StringBuilder(""); 6 sb2.append(s