leetcoe 第三题 找最大无重复的字符串

#include 
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

 

你可能感兴趣的:(有趣的面试题)