无重复字符的最长子串


public class K {
    
    static int clen=0;

    
    public static void lengthOfLongestSubstring(String s) {
        

        String tempStrs = "";

        for(int i=0;i             
            
            int lcn= tempStrs.indexOf(s.charAt(i)+"");
            if(lcn != -1){
                
                if(tempStrs.length() > clen){
                    
                    clen = tempStrs.length();
                }
                s = s.substring(lcn+1, s.length());
                lengthOfLongestSubstring(s);
            }else{
                
                tempStrs = tempStrs.concat(s.charAt(i)+"");
            }
        }
        
        System.out.println(clen);
        System.exit(1);
    }
    

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        
        String s="abcabcbfdgegfergftttyjtyjktyjtyb";
        
        
        //String s="cwcwelkiojghgwwqqsdsds";
        //String s="cwcpvwelkiojgcgwwqqsdsds";
        
        
        lengthOfLongestSubstring(s);
        System.out.println(clen);
        
        

    }

}
 

你可能感兴趣的:(leetcode)