网址:https://leetcode.com/problems/longest-substring-without-repeating-characters/ 显然采用sliding window滑动窗口法,辅助以哈希表,判断字符是否已使用 不断扩充 j,直到 s[j] 已经使用 此时,把 i 移动到 j 之前的 s[j] 字符前面,继续循环 class Solution { public: int lengthOfLongestSubstring(string s) { , j; ; map…