求最长不重复字符子串长度,多次循环遍历的方法可以做,但是复杂度高就不考虑了,用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; } }