>  기사  >  Java  >  반복되는 문자가 없는 가장 긴 부분 문자열

반복되는 문자가 없는 가장 긴 부분 문자열

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-09-24 06:21:48709검색

Longest substring without repeating characters

문제

무차별 접근 방식에는 주어진 문자열의 가능한 모든 하위 문자열을 생성하고 반복 문자 없이 가장 긴 하위 문자열이 무엇인지 알아내는 작업이 포함됩니다. 이는 TC:O(n^2)

로 이어질 것입니다.

최적 접근 방식:
TC : O(n)
SC : O(256), 크기 256의 int[] 사용

class Solution {
    public int lengthOfLongestSubstring(String s) {
        int hash[] = new int[256];// size of all the ascii characters
        Arrays.fill(hash,-1); // -1 to indicate these indexes don't have any character visited already
        int left =0,right =0;
        int max = 0;
        while(right<s.length()){
            char  c = s.charAt(right);
            if(hash[c]!=-1){// means the character has been seen in the past
                if(hash[c]>=left){// if the index of the character seen in the past is after the left pointer, then left pointer should be updated, to avoid duplicate in the window of substring
                    left  = hash[c] + 1;// has to be 1 index after the index of last seen duplicate character
                }
            }
            max = Integer.max(max, right-left+1);// keep track of mas window substring
            hash[c]  = right;// update the character last seen index in hash
            right++;
        }
        return max;
    }
}

위 내용은 반복되는 문자가 없는 가장 긴 부분 문자열의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.