[0340] 至多包含 K 个不同字符的最长子串
- GitHub
- http://leetcode.xuezhisd.top/post/4556b2a6.html
- https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters
- https://leetcode-cn.com/problems/longest-substring-with-at-most-k-distinct-characters
题目描述
给定一个字符串 s ,找出 至多 包含 k 个不同字符的最长子串 T。
示例 1:
输入: s = "eceba", k = 2 输出: 3 解释: 则 T 为 "ece",所以长度为 3。
示例 2:
输入: s = "aa", k = 1 输出: 2 解释: 则 T 为 "aa",所以长度为 2。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |