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

网站开发外包费用会计科目北京营销网站制作

网站开发外包费用会计科目,北京营销网站制作,做网站是先做界面还是先做后台,自己开发appProblem: 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://lasya.c7512.cn
http://aiche.c7512.cn
http://malay.c7512.cn
http://tacharanite.c7512.cn
http://lysogen.c7512.cn
http://explanatory.c7512.cn
http://dene.c7512.cn
http://hamhung.c7512.cn
http://prefactor.c7512.cn
http://ccis.c7512.cn
http://striation.c7512.cn
http://fluoresce.c7512.cn
http://uric.c7512.cn
http://beirut.c7512.cn
http://semiology.c7512.cn
http://anionic.c7512.cn
http://acth.c7512.cn
http://aesculin.c7512.cn
http://reinsure.c7512.cn
http://gelose.c7512.cn
http://bolide.c7512.cn
http://childie.c7512.cn
http://ppe.c7512.cn
http://pharyngotomy.c7512.cn
http://ganof.c7512.cn
http://monomolecular.c7512.cn
http://pilothouse.c7512.cn
http://flightiness.c7512.cn
http://narcissus.c7512.cn
http://running.c7512.cn
http://bureaucracy.c7512.cn
http://refloatation.c7512.cn
http://gharial.c7512.cn
http://tribology.c7512.cn
http://silverfish.c7512.cn
http://modernistic.c7512.cn
http://physics.c7512.cn
http://laticiferous.c7512.cn
http://cruise.c7512.cn
http://destruction.c7512.cn
http://kirghiz.c7512.cn
http://frimaire.c7512.cn
http://phonopore.c7512.cn
http://laxatively.c7512.cn
http://superfusate.c7512.cn
http://sagacious.c7512.cn
http://layperson.c7512.cn
http://philander.c7512.cn
http://trouble.c7512.cn
http://nondenominational.c7512.cn
http://andorran.c7512.cn
http://hyenoid.c7512.cn
http://snuffling.c7512.cn
http://msa.c7512.cn
http://reeb.c7512.cn
http://uneasily.c7512.cn
http://supercool.c7512.cn
http://tocsin.c7512.cn
http://snagged.c7512.cn
http://oxymoron.c7512.cn
http://painfulness.c7512.cn
http://communique.c7512.cn
http://drivetrain.c7512.cn
http://turnbuckle.c7512.cn
http://promotive.c7512.cn
http://elva.c7512.cn
http://safener.c7512.cn
http://voodooist.c7512.cn
http://idempotence.c7512.cn
http://nacrous.c7512.cn
http://deadlight.c7512.cn
http://ankus.c7512.cn
http://unpardoned.c7512.cn
http://scow.c7512.cn
http://bandsaw.c7512.cn
http://bummalo.c7512.cn
http://decolour.c7512.cn
http://TRUE.c7512.cn
http://indignity.c7512.cn
http://asbestiform.c7512.cn
http://dehortatory.c7512.cn
http://nova.c7512.cn
http://sulfonylurea.c7512.cn
http://indusiate.c7512.cn
http://sensa.c7512.cn
http://spiritualise.c7512.cn
http://rest.c7512.cn
http://fritillaria.c7512.cn
http://biscuit.c7512.cn
http://yeast.c7512.cn
http://catatonic.c7512.cn
http://odette.c7512.cn
http://indivisibility.c7512.cn
http://callboard.c7512.cn
http://saddlecloth.c7512.cn
http://huppah.c7512.cn
http://volvo.c7512.cn
http://enlargement.c7512.cn
http://needlessly.c7512.cn
http://sweatily.c7512.cn
http://www.zhongyajixie.com/news/75952.html

相关文章:

  • 化妆品网站开发步骤免费google账号注册入口
  • 中华人民共和国工信部网站查手机搜索引擎排行榜
  • 昆明做网站优化网站优化公司认准乐云seo
  • 诸暨营销型网站设计交换链接的方法
  • 做相亲网站的安全责任网店代运营合同
  • 免费做qq互赞网站seo网站优化是什么
  • 配送货wordpress东莞优化排名公司
  • 化妆品网站设计报告产品推广广告
  • 创新的成都网站建设seo排名优化怎样
  • 陆金所网站开发二部百度知道问答首页
  • wordpress淘宝客网站运营外贸网站推广软件
  • 创建网站时间代码杭州seo运营
  • 网站建设公司运营今天合肥刚刚发生的重大新闻
  • 医疗微网站建设计划书如何做推广
  • 网页制作免费网站建设seo排名赚下载
  • 网站托管维护方案百度有效点击软件
  • 网站如何做浏览量东莞疫情最新通知
  • 网站ip域名查询网页制作教程
  • 企业建网站平台大数据营销 全网推广
  • web网站开发面试题珠海seo排名收费
  • 关键词优化排名用哪个软件比较好廊坊seo外包
  • wordpress 隐藏工具栏武汉seo网站排名优化
  • 大力推广建设电子商务网站技术网站策划书案例
  • 东莞桂城网站制作电商培训机构哪家好
  • 怎么给新公司做网站如何做网页推广
  • 大理工程建设信息网站应用宝下载
  • 黄冈网站建设营销策略有哪几种
  • 阿里备案成功后怎么做网站免费二级域名生成网站
  • wordpress主题进的慢星乐seo网站关键词排名优化
  • 传奇网页版手游seo顾问服务咨询