LeetCode-3-Longest Substring Without Repeating Characters

求最长不重复字符子串长度,多次循环遍历的方法可以做,但是复杂度高就不考虑了,用hash的方法,一次遍历,在循环中用数组存储对应字符目前出现在的最远的位置,然后用当前位置减去不重复字符的起始位置,每次与最大值比较取较大的。

#include<iostream>
#include<math.h>
#include<string.h>
using namespace std;
int main(){
char a[20];
int b[28]={0},temp=0,sum=0;
cin>>a;
for(int i=0;i<strlen(a);i++){
temp=max(b[a[i]-'a'],temp); //temp为不重复字符的起始 
sum=max(sum,i-temp+1);
b[a[i]-'a']=i+1;
}
cout<<sum<<endl;
return 0;
}
参考有用到map的方法,原理相同,建立对应映射

public class Solution {
    public int lengthOfLongestSubstring(String s) {
        int n = s.length(), ans = 0;
        Map<Character, Integer> map = new HashMap<>(); // current index of character
        // try to extend the range [i, j]
        for (int j = 0, i = 0; j < n; j++) {
            if (map.containsKey(s.charAt(j))) {
                i = Math.max(map.get(s.charAt(j)), i);
            }
            ans = Math.max(ans, j - i + 1);
            map.put(s.charAt(j), j + 1);
        }
        return ans;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值