【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 1.

Given "pwwkew", 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.

思路大概是建立一个映射表,遍历整个字符串,如果字符对应映射表的index值为-1,说明字符没出现过,计算长度大小,更新maxLength。如果字符出现过,那么就重新开始计算。遍历后得到最后结果。

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        int indexOfChar[256];
        memset(indexOfChar, -1, sizeof(indexOfChar));
        int maxLength = 0;
        int initIndex = -1;
        for (int i = 0; i < s.length(); ++i){
            if (indexOfChar[s[i]] > initIndex){
                initIndex = indexOfChar[s[i]];
            }
            indexOfChar[s[i]]=i;
            maxLength=max(maxLength, i - initIndex);
        }
        return maxLength;
    }
};
时间: 2024-10-17 02:37:57

【LeetCode】3. 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.所以得到如下的递推公式: 另外由于不确定字符串长度的

【35】3. Longest Substring Without Repeating Characters

3. Longest Substring Without Repeating Characters Total Accepted: 244703 Total Submissions: 1029071 Difficulty: Medium Contributors: Admin Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcb

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 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 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 long

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

思路:看到题目首先想到最大字符串匹配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