滑动窗口
本文主要解释leetcode 的第三题:无重复字符的最长子串
原链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/
虽然原题也有答解,但由于个人理解起来较为困难所以在这里记录下理解过程,也探究一下滑动窗口的思想
以下是代码:
String s = "applepie";
Map<Character,Integer> map = new HashMa.
原创
2020-09-04 10:06:52 ·
242 阅读 ·
1 评论