//! n,n -> 两个指针各遍历一次共2n;hash表最多占地n classSolution { public: intlengthOfLongestSubstring(string s){ int res = 0; int left = 0; int right = 0; unordered_set<char> hashTable;
while (right < s.length()) { if (hashTable.find(s[right]) == hashTable.end()) { // s[right]未在hashTable里时,加入hashTable,right右移 hashTable.insert(s[right++]); } else { res = max(res, right - left); hashTable.erase(s[left++]); } } res = max(res, right - left); return res; } };