Longest Substring Without Repeating Characters

https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/

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.

题意:找一个字符串中,最长不出现重复字符串的长度。

分析:看完只想到暴力方法,依次遍历str[i],然后判断(i-1)到 0中str[i]是否出现过,记录其中的最大长度。

参照别人的代码,hash的方法,O(1)时间判断一个字符是否出现过。ASIIC码最多256个,定义数组table[256]记录字符在串str中最新依次出现的位置(即下标i)。

用start记录无重复串的起始位置的前一个,如果当前字母没出现过(table[str[i]]==-1),包含当前字符的最长不重复串len=i-start;

如果当前字母出现过,修改start为当前字母上次出现的位置,并将旧start到新start之间的字母出现位置初始化置为-1。例如:wrbmqbar ,start开始为-1,2,必须把table[w],table[r]初始化为-1。因为如果不这么做,当扫描到最后一个r时,第二个位置上的r会扰乱start的值。

代码:

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        if(s.length()<1) return 0;
        int table[256];
        for(int i=0;i<256;i++){
            table[i]=-1;
        }
        int start=-1;
        int len=0,maxlen=0;
        for(int i=0;i<s.length();i++){
            if(table[s[i]]==-1){
                table[s[i]]=i;
                //len=i-start;
            }else{
                start++;//从-1开始的
                while(start<table[s[i]]){
                    table[s[start]]=-1;//把旧新start之间的字母都初始化未出现过 ,wrbmqbar 
                    start++;
                }
                //start=table[s[i]];
                table[s[i]]=i;
                //len=i-start;
            }
            len=i-start;
            if(len>maxlen) maxlen=len;
        }
        return maxlen;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值