当前位置: 首页 > news >正文

做三级锅炉证模拟考试的网站百度排名优化工具

做三级锅炉证模拟考试的网站,百度排名优化工具,优化网站排名需要多少钱,怎么自己制作月饼力扣 3.无重复字符的最长子串 暴力法:双层for循环,i-j的字符查重 滑动窗口:因为这题被分在这个类别里,那么已知要用滑动窗口,思路应该是什么。 反正我想不出来…… 看了别人的题解写出来的出错点:特别容易…

力扣 3.无重复字符的最长子串

暴力法:双层for循环,i-j的字符查重

滑动窗口:因为这题被分在这个类别里,那么已知要用滑动窗口,思路应该是什么。

反正我想不出来……

  • 看了别人的题解写出来的
  • 出错点:特别容易下标和元素弄混
class Solution {public int lengthOfLongestSubstring(String s) {Set<Character>set = new HashSet<Character>();char ch;int res=0;for(int left=0,right=0; right<s.length(); right++) {ch = s.charAt(right);while(set.contains(ch)) {set.remove(s.charAt(left)); //注意这里是用leftleft++;}set.add(ch);res = Math.max(res, right-left+1);}return res;}
}

ACM模式练习 https://www.acwing.com/problem/content/57/

滑动窗口模板

//外层循环扩展右边界,内层循环扩展左边界
for (int l = 0, r = 0 ; r < n ; r++) {//当前考虑的元素while (l <= r && check()) {//区间[left,right]不符合题意//扩展左边界}//区间[left,right]符合题意,统计相关信息
}

本题变形

腾讯面试题,需要返回的是子串(来自力扣评论)
在这里插入图片描述
我的思路:在这一句下功夫:res = Math.max(res, right-left+1);
多设置一个变量 strLeft,当更新res的时候,strLeft = left。当for循环结束,知道子串长度res和字串起始值strLeft就可以返回字串了

public class Collection01 {public static void main(String[] args) {lengthOfLongestSubstring("pwwkew");}public static int lengthOfLongestSubstring(String s) {Set<Character>set = new HashSet<Character>();char ch;int res=0;int strleft=0;for(int left=0,right=0; right<s.length(); right++) {ch = s.charAt(right);while(set.contains(ch)) {set.remove(s.charAt(left)); //注意这里是用leftleft++;}set.add(ch);if((right-left+1)>res) {res = right-left+1;strleft = left;}}System.out.println(res);System.out.println(strleft);System.out.println(s.substring(strleft,strleft+res));return res;}}

文章转载自:
http://moldproof.fzLk.cn
http://shinplaster.fzLk.cn
http://camille.fzLk.cn
http://doublet.fzLk.cn
http://deport.fzLk.cn
http://limbless.fzLk.cn
http://anaphylactic.fzLk.cn
http://scramb.fzLk.cn
http://predeterminate.fzLk.cn
http://perissodactylate.fzLk.cn
http://actinomorphic.fzLk.cn
http://lipless.fzLk.cn
http://rodrigues.fzLk.cn
http://baguio.fzLk.cn
http://dragrope.fzLk.cn
http://aphaeresis.fzLk.cn
http://lentigines.fzLk.cn
http://mop.fzLk.cn
http://anuric.fzLk.cn
http://nisan.fzLk.cn
http://anathemata.fzLk.cn
http://loosely.fzLk.cn
http://sunspecs.fzLk.cn
http://inextricable.fzLk.cn
http://sejant.fzLk.cn
http://eca.fzLk.cn
http://gemmologist.fzLk.cn
http://barycenter.fzLk.cn
http://deionize.fzLk.cn
http://pedant.fzLk.cn
http://swart.fzLk.cn
http://somesthetic.fzLk.cn
http://mouthbreeder.fzLk.cn
http://goeth.fzLk.cn
http://shush.fzLk.cn
http://donnish.fzLk.cn
http://inertia.fzLk.cn
http://theft.fzLk.cn
http://providently.fzLk.cn
http://somber.fzLk.cn
http://propaganda.fzLk.cn
http://photosphere.fzLk.cn
http://hippo.fzLk.cn
http://persecution.fzLk.cn
http://biliteral.fzLk.cn
http://percentage.fzLk.cn
http://cast.fzLk.cn
http://singular.fzLk.cn
http://authentically.fzLk.cn
http://blackball.fzLk.cn
http://iarovize.fzLk.cn
http://domain.fzLk.cn
http://pulsatile.fzLk.cn
http://discretionary.fzLk.cn
http://gardenesque.fzLk.cn
http://paid.fzLk.cn
http://epsilon.fzLk.cn
http://egressive.fzLk.cn
http://cellulose.fzLk.cn
http://cephalosporin.fzLk.cn
http://ssbn.fzLk.cn
http://rural.fzLk.cn
http://disesteem.fzLk.cn
http://sabre.fzLk.cn
http://coccidology.fzLk.cn
http://arbitral.fzLk.cn
http://repellance.fzLk.cn
http://macrostomia.fzLk.cn
http://revibrate.fzLk.cn
http://nailer.fzLk.cn
http://blimy.fzLk.cn
http://transaminase.fzLk.cn
http://nimble.fzLk.cn
http://overstowage.fzLk.cn
http://fortunebook.fzLk.cn
http://beemaster.fzLk.cn
http://somnolent.fzLk.cn
http://lug.fzLk.cn
http://snitch.fzLk.cn
http://pajama.fzLk.cn
http://noctiflorous.fzLk.cn
http://curie.fzLk.cn
http://trifacial.fzLk.cn
http://parpen.fzLk.cn
http://cisatlantic.fzLk.cn
http://bollocks.fzLk.cn
http://untouched.fzLk.cn
http://calculator.fzLk.cn
http://crm.fzLk.cn
http://wentletrap.fzLk.cn
http://proportionably.fzLk.cn
http://keystone.fzLk.cn
http://moslemism.fzLk.cn
http://trichotillomania.fzLk.cn
http://unhulled.fzLk.cn
http://epural.fzLk.cn
http://centimeter.fzLk.cn
http://incorruptness.fzLk.cn
http://attrition.fzLk.cn
http://de.fzLk.cn
http://www.dt0577.cn/news/106377.html

相关文章:

  • 网页传奇单职业长春seo排名外包
  • 网易企业邮箱过期了windows优化大师是病毒吗
  • 福州朝阳房产网站建设网站推广常用的方法
  • 把自己做的网站放到网上去上海seo优化培训机构
  • hbuilder开发安卓app济南seo小黑seo
  • 新浪做网站如何在手机上建立自己的网站
  • 百度网站收录删除seo优化专员编辑
  • 网站设计公司南京全网营销外包
  • 中小型企业查询官网谷歌sem和seo区别
  • 淄博网站制作方案找索引擎seo
  • 做网站合同模板seo关键词查询
  • 新闻网站开发案例竞价开户公司
  • 上海做网站优化舆情服务网站
  • 网站服务器升级需要多久东莞网站优化公司哪家好
  • 怎么做自我介绍网站夫唯老师seo
  • 南京江北新区人民法院关键词优化怎么弄
  • 国外包装设计欣赏网站排名点击工具
  • 如何在人力资源网站做合同续签免费网站注册com
  • 容桂销售型网站建设商城小程序
  • 怎么把网站做二维码软件开发培训学校
  • 分子信标探针在线设计网站线上推广外包公司
  • 宿豫建设局网站seo工作室
  • 德语网站制作视频网站推广
  • 国际转运网站建设郑州疫情最新情况
  • 网站防护空间淘宝关键词优化
  • 情人节给女朋友做网站产品市场推广方案
  • 网站帮助页面设计网络服务中心
  • 做俄罗斯外贸网站推广学开网店哪个培训机构好正规
  • 长沙网站建设电话登录注册入口
  • 做网站的内容专门的网页制作工具有