当前位置:网站首页>每日一题-无重复字符的最长子串-0712
每日一题-无重复字符的最长子串-0712
2022-08-05 05:17:00 【菜鸡程序媛】
题目:给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度。
解题思路:在map中存放字符串字符,当存在已有字符和当前的字符相等时,要更新滑动窗口的start,要取max(start, s.charAt(i) +1),因为当存在的相等的字符在更前面时,就会造成错误的区域划分,如"tmmzuxt",不取最大值的话,就会把第一个m当成新的开始值,但是m自身已经是重复的字符了。
其实可以这样想,如果start没有变大的话,就证明一直没有重复的字符出现过;既然有更大的值,就证明前面已经有重复的了,只能取更大的。即滑动窗口的左边届开始的后面不应该有重复的字符。
class Solution {
public int lengthOfLongestSubstring(String s) {
if(s == null || s.length() == 0)
return 0;
int left = 0;
int max = 0;
Map<Character, Integer> map = new HashMap<>();
for(int i = 0; i < s.length(); i ++){
if(map.containsKey(s.charAt(i)))
left = Math.max(left, map.get(s.charAt(i)) + 1);
// 在更新重复的字符,如上面的第一个m和第二个m,第二个m写入就会把第一个覆盖掉
map.put(s.charAt(i), i);
max = Math.max(max, i - left + 1);
}
return max;
}
}
边栏推荐
猜你喜欢
电子产品量产工具(4)-UI系统实现
函数在开发环境中的应用(简易实例)
九、响应处理——内容协商底层原理
二、自动配置之底层注解
LeetCode刷题之第86题
CVPR best paper winner Huang Gao's team from Tsinghua University presented the first dynamic network review
沁恒MCU从EVT中提取文件建立MounRiver独立工程
LeetCode刷题之第55题
[Kaggle project actual combat record] Steps and ideas sharing of a picture classification project - taking leaf classification as an example (using Pytorch)
每日一题-单调栈
随机推荐
【UiPath2022+C#】UiPath控制流程概述
C语言入门笔记 —— 分支与循环
网络通信及相关函数介绍
leetCode刷题之第31题
【ts】typescript高阶:typeof使用
[Database and SQL study notes] 8. Views in SQL
1004 成绩排名 (20 分)
framebuffer应用编程及文字显示(1)
亲身实感十多年的面试官面试的题目
LeetCode刷题之第701题
A deep learning code base for Xiaobai, one line of code implements 30+ attention mechanisms.
吞吐?带宽?傻傻分不清楚
(C语言)动态内存管理
Machine Learning (1) - Machine Learning Fundamentals
《基于机器视觉测量系统的工业在线检测研究》论文笔记
【UiPath2022+C#】UiPath Switch
深度学习系列(二)优化器 (Optimization)
一个小时教你如何掌握ts基础
OSPF网络类型
MSRA proposes extreme masking model ExtreMA for learning instances and distributed visual representations