集册 LeetCode 题解 3.Longest Substring Without Repeating Characters

3.Longest Substring Without Repeating Characters

—— Longest Substring Without Repeating Characters

欢马劈雪     最近更新时间:2020-08-04 05:37:59

173

翻译

给定一个字符串,找出其没有重复字符的最大子序列的长度。   例如,“abcabcbb”的无重复字符的最大子序列是“abc”,它的长度是 3。   “bbbbb”的最大子序列是“b”,它的长度是 1。

原文

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.    

Code 1(C++)

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        int len = s.Length;
        int head = 0, index = 0, maxLen = 0;
        bool[] exist = new bool[256];
        for (int i = 0; i < exist.Length; i++)  
            exist[i] = false;  
        while (index < len){
            if (exist[s[index]]){
                 maxLen = Math.Max(maxLen, index - head);
                 while (s[head] != s[index]){
                     exist[s[head]] = false;
                     head++;
                 }
                 head++; index++;
             }
             else{
                 exist[s[index]] = true;
                 index++;
             }
         }
         maxLen = Math.Max(maxLen, len - head);
         return maxLen; 
    }
};

Code 1 C

public class Solution
{
    public int LengthOfLongestSubstring(string s)
    {
        int len = s.Length;
        int head = 0, index = 0, maxLen = 0;
        bool[] exist = new bool[256];
        for (int i = 0; i < exist.Length; i++)
            exist[i] = false;
        while (index < len)
        {
            if (exist[s[index]])
            {
                maxLen = Math.Max(maxLen, index - head);
                while (s[head] != s[index])
                {
                    exist[s[head]] = false;
                    head++;
                }
                head++; index++;
            }
            else
            {
                exist[s[index]] = true;
                index++;
            }
        }
        maxLen = Math.Max(maxLen, len - head);
        return maxLen;
    }
}

Code 1 Java

public class Solution {
    public int lengthOfLongestSubstring(String s) {
        int len=s.length();
        int head=0,index=0,maxLen=0;
        boolean[] exist=new boolean[256];
        for(boolean e : exist)
            e=false;
        while(index<len){
            if(exist[s.charAt(index)]){
                maxLen=Math.max(maxLen, index-head);
                while(s.charAt(head)!=s.charAt(index)){
                    exist[s.charAt(head)]=false;
                    head++;
                }
                head++; index++;
            }
            else{
                exist[s.charAt(index)]=true;
                index++;
            }
        }
        return maxLen= Math.max(maxLen,len-head);
    }
}

Code 2 C++

展开阅读全文