摘要: 描述 【题解】 尺取法 对于[l..r]这段 如果新加进来的s[r]有和之前的重复。 那么就不用重新开始了。 直接递增左区间。 让这段没有重复数字了再说。 然后再把s[r]加进去。 【代码】 cpp class Solution { public: int lengthOfLongestSubstr 阅读全文
posted @ 2019-10-31 22:30 AWCXV 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 描述 【题解】 用个map的话就是O(N)级别的了。 【代码】 cpp class Solution { public: unordered_map mymap; vector twoSum(vector& nums, int target) { int len = nums.size(); vec 阅读全文
posted @ 2019-10-31 22:06 AWCXV 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 描述 【题解】 模拟高精度的加法。 用x来记录前面的进位就好。 【代码】 阅读全文
posted @ 2019-10-31 21:51 AWCXV 阅读(130) 评论(0) 推荐(0) 编辑