leetcode:3. 無重複字符的最長子串(雙指針)

題目: 分析: 的確是雙指針問題,藉助個map就ok把。c++ 代碼: #include<bits/stdc++.h> using namespace std; int main() { string s; if(s.size()<=1) return s.size(); int len=1; map<char,int> m; m[s[0]]=1; int b=0; for(in
相關文章
相關標籤/搜索