문제
무차별 접근 방식에는 주어진 문자열의 가능한 모든 하위 문자열을 생성하고 반복 문자 없이 가장 긴 하위 문자열이 무엇인지 알아내는 작업이 포함됩니다. 이는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!