首页 > 其他 > 详细

3.Longest Substring Without Repeating Characters

时间:2015-08-17 06:30:39      阅读:121      评论:0      收藏:0      [点我收藏+]

题目

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.


解题思路

1.应该可以用分治法的,不过目前还没想到怎么合并。

2.顺序枚举主串中的所有字符,以此作为子串的最后一个字符。对于每种情况,找出最长的不重复子串。时间复杂度O(n),空间复杂度O(n)。(√)


代码


public class Solution {
    
    public int lengthOfLongestSubstring(String s) {
        
        java.util.Hashtable<String,Integer> hashtb=new java.util.Hashtable<String,Integer>();
        int start=0;
        int max=0;
        String ch; 

        for(int i=0;i<s.length();++i){
            ch=java.lang.Character.toString(s.charAt(i));

            if(hashtb.containsKey(ch)){
                start=(hashtb.get(ch)+1)>start?(hashtb.get(ch)+1):start;
                hashtb.remove(ch);
            }   

            max=(i-start+1)>max?(i-start+1):max;
            hashtb.put(ch,i);
        }   

        return max;
    }
    
}


运行结果


技术分享


版权声明:本文为博主原创文章,未经博主允许不得转载。

3.Longest Substring Without Repeating Characters

原文:http://blog.csdn.net/hiboy_111/article/details/47715379

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!