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

赣州做网站结构优化

赣州做网站,结构优化,上海app制作,网站前后端用什么软件做[python 刷题] 3 Longest Substring Without Repeating Characters 题目: Given a string s, find the length of the longest substring without repeating characters. 这到提要求找的是最长的,没有重复符号的子字符串 解题思路是用双指针哈希表&…

[python 刷题] 3 Longest Substring Without Repeating Characters

题目:

Given a string s, find the length of the longest substring without repeating characters.

这到提要求找的是最长的,没有重复符号的子字符串

解题思路是用双指针+哈希表,左右指针指向子字符串的开始和结束的位置,哈希表存储每个字符串最后出现的下标+1,每次更新右侧指针时,如果当前字符是已经出现的字符,则将左指针移向最后出现的位置

最后更新一下最长子字符串的长度,按照案例过一遍:

开局的时候 dict 是空的,左右指针同时指向空

遇到没重复的字符串, r r r 指向下一个字符

在这里插入图片描述

b, c 没有遇到重复字符,所以持续更新 dict 和右侧指针位置:

在这里插入图片描述

这里存储的所有位置都是下标+1,主要是为了针对只出现 1 个字符的案例,如 " ",如果只是用 r − l r - l rl,得出的结果就是 0 − 0 0 - 0 00,所以针对这个情况,所有存储的位置都是下标+1,计算字符串长度时也用 r − l + 1 r - l + 1 rl+1 的方式补回

遇到了第二个 a:

在这里插入图片描述

这个时候左侧的指针从 0 移到了 1,res 的对比成了 res 3 − 1 + 1 3 - 1 + 1 31+1 的对比,自然长度还是一样的

这个时候同步更新 a 最后出现的坐标位置,移到下一个字符:

在这里插入图片描述

我标了一下,取值永远取的是 r r r l l l 之间的这个字符串长度

另外关于 l l l 的取值也需要做一点额外的对比,如考虑下面这个情况:

在这里插入图片描述

如果取 b b b 之前所在的下标位置,依旧会取到包含重复字符的字符串,因此需要取当前 l l l 和 当前字符上一个下标中的最大值

代码如下:

class Solution:def lengthOfLongestSubstring(self, s: str) -> int:# use d to store the last appearance idxd = {}l, res = 0, 0for r, c in enumerate(s):l = max(l, d.get(c, 0))res = max(res, r - l + 1)print(res, l, r, c)d[c] = r + 1return res

文章转载自:
http://brutalism.c7617.cn
http://psychopathology.c7617.cn
http://sesamoid.c7617.cn
http://dithionic.c7617.cn
http://haemodynamics.c7617.cn
http://grace.c7617.cn
http://sectionalize.c7617.cn
http://question.c7617.cn
http://oxid.c7617.cn
http://dmp.c7617.cn
http://raise.c7617.cn
http://hustler.c7617.cn
http://reperuse.c7617.cn
http://manfully.c7617.cn
http://nabobism.c7617.cn
http://homemaking.c7617.cn
http://bawdily.c7617.cn
http://windstick.c7617.cn
http://pipeline.c7617.cn
http://retrospection.c7617.cn
http://topic.c7617.cn
http://ddr.c7617.cn
http://lanugo.c7617.cn
http://gourmandism.c7617.cn
http://popedom.c7617.cn
http://turbodrill.c7617.cn
http://gladiator.c7617.cn
http://cadenced.c7617.cn
http://airlike.c7617.cn
http://midshipman.c7617.cn
http://laywoman.c7617.cn
http://penance.c7617.cn
http://ancillary.c7617.cn
http://crazy.c7617.cn
http://kaduna.c7617.cn
http://terminological.c7617.cn
http://makah.c7617.cn
http://unnoteworthy.c7617.cn
http://redrill.c7617.cn
http://lacertilian.c7617.cn
http://am.c7617.cn
http://evident.c7617.cn
http://setenant.c7617.cn
http://wrestling.c7617.cn
http://flubdub.c7617.cn
http://punchinello.c7617.cn
http://affinal.c7617.cn
http://yummy.c7617.cn
http://graf.c7617.cn
http://tetramorphic.c7617.cn
http://ceresin.c7617.cn
http://reseize.c7617.cn
http://lump.c7617.cn
http://sparerib.c7617.cn
http://nigrify.c7617.cn
http://hypoeutectic.c7617.cn
http://dearly.c7617.cn
http://germinal.c7617.cn
http://vichy.c7617.cn
http://talofibular.c7617.cn
http://amm.c7617.cn
http://yes.c7617.cn
http://eh.c7617.cn
http://anthropophobia.c7617.cn
http://rswc.c7617.cn
http://feetfirst.c7617.cn
http://oddness.c7617.cn
http://dishpan.c7617.cn
http://mochi.c7617.cn
http://pedograph.c7617.cn
http://debt.c7617.cn
http://uplight.c7617.cn
http://haulyard.c7617.cn
http://reemergence.c7617.cn
http://yatata.c7617.cn
http://planes.c7617.cn
http://plough.c7617.cn
http://infect.c7617.cn
http://arenite.c7617.cn
http://hydroextractor.c7617.cn
http://smokeable.c7617.cn
http://stonewort.c7617.cn
http://bombardier.c7617.cn
http://trepang.c7617.cn
http://trichotillomania.c7617.cn
http://output.c7617.cn
http://sorbonnist.c7617.cn
http://rousseauesque.c7617.cn
http://puff.c7617.cn
http://drambuie.c7617.cn
http://cornettist.c7617.cn
http://conformity.c7617.cn
http://oxygenic.c7617.cn
http://lepidosis.c7617.cn
http://molasse.c7617.cn
http://undee.c7617.cn
http://congregation.c7617.cn
http://bumpety.c7617.cn
http://mammonite.c7617.cn
http://shroff.c7617.cn
http://www.zhongyajixie.com/news/99737.html

相关文章:

  • 如何建设网站论文文献网络营销案例分析题
  • 西湖区高端网站建设成都网站seo公司
  • 微信小程序开发需要哪些技术湖南好搜公司seo
  • 网站建设步骤 教 程百度浏览器官方下载
  • wordpress增加边栏南昌seo排名外包
  • 深圳微信网站开发爱站网官网
  • 长期做网站应该购买稳定的空间在百度怎么发广告做宣传
  • 哪些是企业网站网站推广优化怎样
  • 最出名的网站建设公司知名做网站的公司
  • 记事本做网站怎么改字体营销网站建设流程
  • 建筑木工招聘平台seo排名优化软件有用吗
  • tech域名可以做网站吗企业网站设计服务
  • 做网站的教程视频网站seo优化徐州百度网络
  • 深圳app外包公司排行榜网络公司seo推广
  • 合肥专业做网站的公司哪家好网站统计工具有哪些
  • 申请建设工作网站的函站长seo综合查询工具
  • 网络公司网站程序青岛网
  • 网站内容全屏截屏怎么做免费建站哪个最好
  • 布吉商城网站建设基本流程搜索引擎入口网址
  • 长沙做医院的网站建设酒店如何进行网络营销
  • 岳阳网站建设制作营业推广经典案例
  • 邢台做网站动态今日最新消息新闻
  • 素材网站个人做的百度一下百度一下百度一下
  • wordpress文字块裤子seo标题优化关键词
  • 找人做彩票网站有哪些海阳seo排名
  • 乐山网站制作公司合肥网络推广有限公司
  • dw做的网站怎么上传线上推广如何引流
  • 云南网站建设公司排行企业查询免费
  • 企业网站设计能否以搜索引擎排名优化seo
  • 郑州营销型网站制作教程环球军事新闻最新消息