leetcoe 第三题 找最大无重复的字符串
#include <iostream>
using namespace std;
int lengthOfLongestSubstring(string s) {
int sSize = s.size();
int result = 0,length = 0;
int j = 0,k=0;
//遍历所有字符
for(int i=0;i<sSize;i++){
char tmep = s[i];
//在该字符前找重复的字符
for.
原创
2020-05-14 13:27:07 ·
134 阅读 ·
0 评论