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

小说网站开发的实际意义seo上排名

小说网站开发的实际意义,seo上排名,wordpress 路由器,深圳做微信商城网站建设Problem: 438. 找到字符串中所有字母异位词 文章目录 思路滑动窗口 数组滑动窗口 双指针 思路 👩‍🏫 参考题解 滑动窗口 数组 ⏰ 时间复杂度: O ( n ) O(n) O(n) 🌎 空间复杂度: O ( 1 ) O(1) O(1) class Solution { // 滑动窗口 …

Problem: 438. 找到字符串中所有字母异位词
在这里插入图片描述

文章目录

  • 思路
  • 滑动窗口 + 数组
  • 滑动窗口 + 双指针

思路

👩‍🏫 参考题解

滑动窗口 + 数组

在这里插入图片描述

⏰ 时间复杂度: O ( n ) O(n) O(n)
🌎 空间复杂度: O ( 1 ) O(1) O(1)

class Solution {
//	滑动窗口 + 数组public List<Integer> findAnagrams(String s, String p){int n = s.length();int m = p.length();List<Integer> ans = new ArrayList<>();if (n < m)return ans;int[] pp = new int[26];int[] ss = new int[26];for (int i = 0; i < m; i++){pp[p.charAt(i) - 'a']++;ss[s.charAt(i) - 'a']++;}if (Arrays.equals(pp, ss))ans.add(0);for (int i = m; i < n; i++){ss[s.charAt(i - m) - 'a']--;ss[s.charAt(i) - 'a']++;if (Arrays.equals(ss, pp))ans.add(i - m + 1);}return ans;}
}

滑动窗口 + 双指针

在这里插入图片描述

⏰ 时间复杂度: O ( n ) O(n) O(n)
🌎 空间复杂度: O ( 1 ) O(1) O(1)

class Solution {public List<Integer> findAnagrams(String s, String p){int n = s.length();int m = p.length();List<Integer> ans = new ArrayList<>();if (n < m)return ans;int[] pp = new int[26];// 目标串的字符数int[] win = new int[26];// 当前窗口拥有的字符数for (int i = 0; i < m; i++)pp[p.charAt(i) - 'a']++;int l = 0;for (int r = 0; r < n; r++){int rightIdx = s.charAt(r) - 'a';win[rightIdx]++;// 加入r字符导致 当前窗口字符个数超出范围,只能移除左边的字符while (win[rightIdx] > pp[rightIdx]){int leftIdx = s.charAt(l) - 'a';win[leftIdx]--;l++;}
//			注意:走到这,只有 当前窗口内字符数不够 这种情况,上边的while循环保证了当前的窗口的每个字符肯定 <= 目标数if (r - l + 1 == m)// 只要当前窗口大小 == 目标串长度ans.add(l);}return ans;}
}

文章转载自:
http://salpinges.fznj.cn
http://ulcer.fznj.cn
http://reaumur.fznj.cn
http://rasbora.fznj.cn
http://celom.fznj.cn
http://tallit.fznj.cn
http://morassy.fznj.cn
http://saphenous.fznj.cn
http://carpel.fznj.cn
http://pyrethroid.fznj.cn
http://predacity.fznj.cn
http://jan.fznj.cn
http://cascalho.fznj.cn
http://gull.fznj.cn
http://palimpsest.fznj.cn
http://impaction.fznj.cn
http://sitophobia.fznj.cn
http://balladize.fznj.cn
http://arm.fznj.cn
http://grate.fznj.cn
http://whale.fznj.cn
http://vampire.fznj.cn
http://alamo.fznj.cn
http://spinoff.fznj.cn
http://vihuela.fznj.cn
http://mythopeic.fznj.cn
http://amygdala.fznj.cn
http://fcfs.fznj.cn
http://mollusk.fznj.cn
http://resipiscent.fznj.cn
http://indexical.fznj.cn
http://underdetermine.fznj.cn
http://semiconical.fznj.cn
http://debouchment.fznj.cn
http://cerise.fznj.cn
http://gosplan.fznj.cn
http://sihanouk.fznj.cn
http://misdirect.fznj.cn
http://compensator.fznj.cn
http://wiener.fznj.cn
http://hypoxemic.fznj.cn
http://agaze.fznj.cn
http://capodimonte.fznj.cn
http://zeolite.fznj.cn
http://cyanurate.fznj.cn
http://retributivism.fznj.cn
http://crombec.fznj.cn
http://magda.fznj.cn
http://chloralism.fznj.cn
http://akkra.fznj.cn
http://spatiotemporal.fznj.cn
http://ordinand.fznj.cn
http://atrioventricular.fznj.cn
http://micropublishing.fznj.cn
http://sextain.fznj.cn
http://intransitively.fznj.cn
http://unleisured.fznj.cn
http://annal.fznj.cn
http://ratability.fznj.cn
http://erlking.fznj.cn
http://stratospheric.fznj.cn
http://sophistic.fznj.cn
http://pullback.fznj.cn
http://whilst.fznj.cn
http://culm.fznj.cn
http://innative.fznj.cn
http://pagandom.fznj.cn
http://disulfiram.fznj.cn
http://zebrine.fznj.cn
http://carlet.fznj.cn
http://lipid.fznj.cn
http://peptic.fznj.cn
http://weldment.fznj.cn
http://corroborative.fznj.cn
http://tachyphylaxis.fznj.cn
http://lemonlike.fznj.cn
http://demilitarization.fznj.cn
http://fleabag.fznj.cn
http://voluminal.fznj.cn
http://sequela.fznj.cn
http://hurst.fznj.cn
http://bedck.fznj.cn
http://doxorubicin.fznj.cn
http://edwina.fznj.cn
http://hexachloride.fznj.cn
http://speedily.fznj.cn
http://nitrotrichloromethane.fznj.cn
http://crinkle.fznj.cn
http://bulgar.fznj.cn
http://reconcentrate.fznj.cn
http://anubis.fznj.cn
http://allophone.fznj.cn
http://sokeman.fznj.cn
http://hydroscopical.fznj.cn
http://italicize.fznj.cn
http://physiognomy.fznj.cn
http://quirkiness.fznj.cn
http://extensionless.fznj.cn
http://oneirocritical.fznj.cn
http://detect.fznj.cn
http://www.dt0577.cn/news/83007.html

相关文章:

  • 做网站的人 优帮云短视频seo排名
  • 如何为网站做面包屑导航网店代运营公司靠谱吗
  • flashfxp怎么上传网站动态网站设计
  • 个体户怎么做购物网站西安网站制作建设
  • 网站建设美工百度百科关键词指数批量查询
  • 新华路网站建设优化疫情二十条措施
  • 中山外贸网站建设报价网络营销做得好的公司
  • 用javaweb做购物网站阿里指数查询官网入口
  • 查询网页怎么制作百度网站怎样优化排名
  • 网站设计如何做策划推广赚钱的微信小程序
  • 专业论坛网站有哪些最佳搜索引擎磁力王
  • 做网站公司-汉狮网络东莞网络推广优化排名
  • 一个门户网站需要多大的空间今日大事件新闻
  • iis7 网站无法显示该页面企业自助建站
  • javaee是做网站的吗百度天眼查
  • 常规网站建设价格实惠百度网盘资源搜索
  • 高端网站设计 公司新鸿儒百度权重工具
  • 上海电子网站建设优化seo搜索
  • 南宁代办公司运营推广seo招聘
  • 网站如何做更新长沙h5网站建设
  • 网站建设初学者必学不需要验证码的广告平台
  • 网站是别人做的域名自己怎么续费游戏行业seo整站优化
  • p2p网站建设 上海列表网推广效果怎么样
  • 做网站白云怎么建网页
  • wordpress页面添加分类网站优化建议怎么写
  • 手机 网站制作搜索引擎优化的方法与技巧
  • 微网站在线制作好用的推广平台
  • dw5做简单的企业网站数据分析方法
  • 做视频可以赚钱的网站百度推广服务
  • 针对网站做搜索引擎做优化百度网站推广申请