摘要: 用滑动窗口的思想来做。用一个unordered_map来查询之前的char有没有在现在的窗口中。class Solution {public: int lengthOfLongestSubstring(string s) { unordered_mapmp; int... 阅读全文
posted @ 2015-10-21 13:08 周洋 阅读(229) 评论(0) 推荐(0) 编辑