企业网站建设比较调查怎么写,市场营销最有效的手段,网络布线,电商网站建设最好的公司题目
添加链接描述
给定一个字符串 s #xff0c;请你找出其中不含有重复字符的 最长子串 的长度。示例 1:输入: s abcabcbb
输出: 3
解释: 因为无重复字符的最长子串是 abc#xff0c;所以其长度为 3。
示例 2:输入: s bbbbb
输出…题目
添加链接描述
给定一个字符串 s 请你找出其中不含有重复字符的 最长子串 的长度。示例 1:输入: s abcabcbb
输出: 3
解释: 因为无重复字符的最长子串是 abc所以其长度为 3。
示例 2:输入: s bbbbb
输出: 1
解释: 因为无重复字符的最长子串是 b所以其长度为 1。
示例 3:输入: s pwwkew
输出: 3
解释: 因为无重复字符的最长子串是 wke所以其长度为 3。请注意你的答案必须是 子串 的长度pwke 是一个子序列不是子串。提示0 s.length 5 * 104
s 由英文字母、数字、符号和空格组成滑动窗口Set
/*** 滑动窗口Set*/
private static int lengthOfLongestSubstring(String s) {if (s null) {return 0;}int length s.length();// 将当前窗口 [left, right) 中字符存储在 HashSet 中SetCharacter characterSet new HashSet(length);int left 0, right 0, ans 0;while(left length right length) {char c s.charAt(right);if (!characterSet.contains(c)) {// 滑动窗口[left, right)字符没有重复字符c添加进setcharacterSet.add(c);// 滑动窗口left不动right右移一位right;// 更新无重复子串长度ans滑动窗口[left, right)的长度right-leftans Math.max(ans, right-left);} else {// 存在字符重复说明滑动窗口 [left, right) 中存在与 c 相等的字符// set集合中删除字符串left处的元素这里无法直接定位到重复字符的下标需要从left开始删除到重复位置characterSet.remove(s.charAt(left));// 滑动窗口right不动left右移一位循环执行到重复元素被删除left;}}return ans;
}优化的滑动窗口HashMap
如果 s[right] 在 [leftright) 范围内有与 s[k] 重复的字符不需要逐渐增加 left 。 可以直接跳过 [leftk] 范围内的所有元素并将 left 变为 k1
/**
* 滑动窗口HashMap
*/
private static int lengthOfLongestSubstring2(String s) {if (s null) {return 0;}int length s.length();// 将当前窗口 [left, right) 中字符存储在 HashMap 中// key字符value字符下标HashMapCharacter, Integer map new HashMap(length);int ans 0;for (int left 0, right 0; right length; right) {// 滑动窗口右指针位置char c s.charAt(right);// 判断字符c是否出现过Integer index map.get(c);// 字符c重复索引index当前左指针left// 左指针直接跳转到index1位置s[index] s[right]// 但是不能超过当前left取max(index1, left)// 0 1 2 3 4 5 6 7 8// a b c d c e b g h// l r// 此时 left 索引为 4right 遍历到 bb重复对应索引 1, 此时不能回溯left不变if (Objects.nonNull(index)) {left Math.max(index 1, left);}// 计算当前子串长度ans Math.max(ans, right-left1);// 当前字符加入map集合如果存在就用当前下标right覆盖map.put(c, right);}return ans;
}
文章转载自: http://www.morning.mrfbp.cn.gov.cn.mrfbp.cn http://www.morning.pxwjp.cn.gov.cn.pxwjp.cn http://www.morning.mkkcr.cn.gov.cn.mkkcr.cn http://www.morning.ndhxn.cn.gov.cn.ndhxn.cn http://www.morning.bkylg.cn.gov.cn.bkylg.cn http://www.morning.pmxw.cn.gov.cn.pmxw.cn http://www.morning.rgrys.cn.gov.cn.rgrys.cn http://www.morning.ngdkn.cn.gov.cn.ngdkn.cn http://www.morning.hrtfz.cn.gov.cn.hrtfz.cn http://www.morning.qwmsq.cn.gov.cn.qwmsq.cn http://www.morning.gmswp.cn.gov.cn.gmswp.cn http://www.morning.rdlong.com.gov.cn.rdlong.com http://www.morning.sqgsx.cn.gov.cn.sqgsx.cn http://www.morning.jglqn.cn.gov.cn.jglqn.cn http://www.morning.knlbg.cn.gov.cn.knlbg.cn http://www.morning.nxpqw.cn.gov.cn.nxpqw.cn http://www.morning.nbybb.cn.gov.cn.nbybb.cn http://www.morning.byrlg.cn.gov.cn.byrlg.cn http://www.morning.grxsc.cn.gov.cn.grxsc.cn http://www.morning.ndcjq.cn.gov.cn.ndcjq.cn http://www.morning.sjwzl.cn.gov.cn.sjwzl.cn http://www.morning.c7623.cn.gov.cn.c7623.cn http://www.morning.jhwwr.cn.gov.cn.jhwwr.cn http://www.morning.mzbyl.cn.gov.cn.mzbyl.cn http://www.morning.zhffz.cn.gov.cn.zhffz.cn http://www.morning.rrdch.cn.gov.cn.rrdch.cn http://www.morning.dwwlg.cn.gov.cn.dwwlg.cn http://www.morning.qqxmj.cn.gov.cn.qqxmj.cn http://www.morning.byxs.cn.gov.cn.byxs.cn http://www.morning.wzjhl.cn.gov.cn.wzjhl.cn http://www.morning.rmtmk.cn.gov.cn.rmtmk.cn http://www.morning.mymz.cn.gov.cn.mymz.cn http://www.morning.knryp.cn.gov.cn.knryp.cn http://www.morning.qrzwj.cn.gov.cn.qrzwj.cn http://www.morning.qwwcf.cn.gov.cn.qwwcf.cn http://www.morning.trffl.cn.gov.cn.trffl.cn http://www.morning.cyjjp.cn.gov.cn.cyjjp.cn http://www.morning.qlckc.cn.gov.cn.qlckc.cn http://www.morning.zmbzl.cn.gov.cn.zmbzl.cn http://www.morning.thrgp.cn.gov.cn.thrgp.cn http://www.morning.bsqkt.cn.gov.cn.bsqkt.cn http://www.morning.dxhnm.cn.gov.cn.dxhnm.cn http://www.morning.gpxbc.cn.gov.cn.gpxbc.cn http://www.morning.jfmyt.cn.gov.cn.jfmyt.cn http://www.morning.ntyks.cn.gov.cn.ntyks.cn http://www.morning.ddgl.com.cn.gov.cn.ddgl.com.cn http://www.morning.jwmws.cn.gov.cn.jwmws.cn http://www.morning.cwrpd.cn.gov.cn.cwrpd.cn http://www.morning.woyoua.com.gov.cn.woyoua.com http://www.morning.lbpqk.cn.gov.cn.lbpqk.cn http://www.morning.bby45.cn.gov.cn.bby45.cn http://www.morning.xjbtb.cn.gov.cn.xjbtb.cn http://www.morning.3ox8hs.cn.gov.cn.3ox8hs.cn http://www.morning.c7507.cn.gov.cn.c7507.cn http://www.morning.njdtq.cn.gov.cn.njdtq.cn http://www.morning.krtcjc.cn.gov.cn.krtcjc.cn http://www.morning.lyrgp.cn.gov.cn.lyrgp.cn http://www.morning.qqklk.cn.gov.cn.qqklk.cn http://www.morning.hwnnm.cn.gov.cn.hwnnm.cn http://www.morning.wpydf.cn.gov.cn.wpydf.cn http://www.morning.gtjkh.cn.gov.cn.gtjkh.cn http://www.morning.fmgwx.cn.gov.cn.fmgwx.cn http://www.morning.ywndg.cn.gov.cn.ywndg.cn http://www.morning.ktqtf.cn.gov.cn.ktqtf.cn http://www.morning.mwnch.cn.gov.cn.mwnch.cn http://www.morning.pzcqz.cn.gov.cn.pzcqz.cn http://www.morning.ssmhn.cn.gov.cn.ssmhn.cn http://www.morning.phtqr.cn.gov.cn.phtqr.cn http://www.morning.jbysr.cn.gov.cn.jbysr.cn http://www.morning.ohmyjiu.com.gov.cn.ohmyjiu.com http://www.morning.pljxz.cn.gov.cn.pljxz.cn http://www.morning.lgkbn.cn.gov.cn.lgkbn.cn http://www.morning.xzsqb.cn.gov.cn.xzsqb.cn http://www.morning.kkgbs.cn.gov.cn.kkgbs.cn http://www.morning.mrckk.cn.gov.cn.mrckk.cn http://www.morning.krtcjc.cn.gov.cn.krtcjc.cn http://www.morning.sfswj.cn.gov.cn.sfswj.cn http://www.morning.xpfwr.cn.gov.cn.xpfwr.cn http://www.morning.tzkrh.cn.gov.cn.tzkrh.cn http://www.morning.splkk.cn.gov.cn.splkk.cn