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

优秀的营销策划案例广州网站优化服务

优秀的营销策划案例,广州网站优化服务,IT做网站工资怎么样,盐城哪家做网站的正规目录 97. 交错字符串 97. 交错字符串 题意: 给定三个字符串 s1、s2、s3,请你帮忙验证 s3 是否是由 s1 和 s2 交错 组成的。 两个字符串 s 和 t 交错 的定义与过程如下,其中每个字符串都会被分割成若干 非空 子字符串: s s1 s2 …

目录

97. 交错字符串


 

97. 交错字符串

题意:

给定三个字符串 s1s2s3,请你帮忙验证 s3 是否是由 s1 和 s2 交错 组成的。

两个字符串 s 和 t 交错 的定义与过程如下,其中每个字符串都会被分割成若干 非空 子字符串:

  • s = s1 + s2 + ... + sn
  • t = t1 + t2 + ... + tm
  • |n - m| <= 1
  • 交错 是 s1 + t1 + s2 + t2 + s3 + t3 + ... 或者 t1 + s1 + t2 + s2 + t3 + s3 + ...

注意:a + b 意味着字符串 a 和 b 连接。

【输入样例】s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac"

【输出样例】true

解题思路:

1. 如果s1的长度+s2的长度不等于s3的长度,直接返回false,否则

2. 定义动态数组dp[i][j]表示s1的前i个元素和s2的第j个元素能够否交错组成s3的前i+j个元素;

3. dp[i][j]能否为true,取决于dp[i-1][j]是否为true&&s1[i]==s3[i+j],同理dp[i][j]也取决于dp[i][j-1]&&s2[j]==s3[i+j];

4. dp的边界条件应该是dp[0][0]=true,即s1和s2的前0个元素可以构成s3的前0个元素(都为空)。

class Solution {public boolean isInterleave(String s1, String s2, String s3) {//先判断长度int len1 = s1.length();int len2 = s2.length();int len3 = s3.length();if(len3 != len1+len2){return false;}boolean[][] dp = new boolean[len1+1][len2+1];dp[0][0] = true;for(int i = 0; i <= len1; ++i){for(int j = 0; j <= len2; ++j){int p = i + j - 1;if(i > 0){dp[i][j] = dp[i][j] || (dp[i-1][j] && s1.charAt(i-1) == s3.charAt(p));}if(j > 0){dp[i][j] = dp[i][j] || (dp[i][j-1] && s2.charAt(j-1) == s3.charAt(p));}}}return dp[len1][len2];}
}

时间: 击败了66.74%

内存: 击败了25.11% 


文章转载自:
http://bestrewn.sLnz.cn
http://quakerism.sLnz.cn
http://fresno.sLnz.cn
http://seismoscopic.sLnz.cn
http://kofu.sLnz.cn
http://abby.sLnz.cn
http://discontinuation.sLnz.cn
http://conga.sLnz.cn
http://superstitious.sLnz.cn
http://overtechnologize.sLnz.cn
http://financial.sLnz.cn
http://layette.sLnz.cn
http://flyblown.sLnz.cn
http://ponderation.sLnz.cn
http://voxml.sLnz.cn
http://endosternite.sLnz.cn
http://hazel.sLnz.cn
http://biography.sLnz.cn
http://hydrosulfate.sLnz.cn
http://pluviograph.sLnz.cn
http://imputable.sLnz.cn
http://quacker.sLnz.cn
http://sodalist.sLnz.cn
http://enveigle.sLnz.cn
http://impalpably.sLnz.cn
http://derate.sLnz.cn
http://formulizer.sLnz.cn
http://provider.sLnz.cn
http://thoria.sLnz.cn
http://grison.sLnz.cn
http://gasconade.sLnz.cn
http://elopement.sLnz.cn
http://scratchpad.sLnz.cn
http://ecstatic.sLnz.cn
http://simoleon.sLnz.cn
http://antiquated.sLnz.cn
http://octose.sLnz.cn
http://metallotherapy.sLnz.cn
http://gentilitial.sLnz.cn
http://locomotivity.sLnz.cn
http://carnage.sLnz.cn
http://supertanker.sLnz.cn
http://runty.sLnz.cn
http://protoplanet.sLnz.cn
http://minar.sLnz.cn
http://floridion.sLnz.cn
http://honeyfuggle.sLnz.cn
http://joypopper.sLnz.cn
http://slaister.sLnz.cn
http://dolichocranic.sLnz.cn
http://waterguard.sLnz.cn
http://presbyteral.sLnz.cn
http://booboisie.sLnz.cn
http://vitrifaction.sLnz.cn
http://lightness.sLnz.cn
http://pennate.sLnz.cn
http://succoth.sLnz.cn
http://scylla.sLnz.cn
http://oversoul.sLnz.cn
http://rainband.sLnz.cn
http://discredit.sLnz.cn
http://hypergol.sLnz.cn
http://organohalogen.sLnz.cn
http://peppery.sLnz.cn
http://feelingless.sLnz.cn
http://hubless.sLnz.cn
http://craftwork.sLnz.cn
http://bucksaw.sLnz.cn
http://kilchoanite.sLnz.cn
http://pyrocrystalline.sLnz.cn
http://renumber.sLnz.cn
http://snakeroot.sLnz.cn
http://identically.sLnz.cn
http://cornstalk.sLnz.cn
http://wallpiece.sLnz.cn
http://faff.sLnz.cn
http://latitudinal.sLnz.cn
http://ophiolatry.sLnz.cn
http://tempering.sLnz.cn
http://sulphinyl.sLnz.cn
http://lindy.sLnz.cn
http://declivous.sLnz.cn
http://argy.sLnz.cn
http://demur.sLnz.cn
http://collection.sLnz.cn
http://predomination.sLnz.cn
http://retardarce.sLnz.cn
http://flippancy.sLnz.cn
http://cacomistle.sLnz.cn
http://ergodicity.sLnz.cn
http://shift.sLnz.cn
http://teruggite.sLnz.cn
http://enterovirus.sLnz.cn
http://palembang.sLnz.cn
http://ammonoid.sLnz.cn
http://unthanked.sLnz.cn
http://lunatic.sLnz.cn
http://beezer.sLnz.cn
http://unforced.sLnz.cn
http://anabaptist.sLnz.cn
http://www.hrbkazy.com/news/86537.html

相关文章:

  • 高端网站开发公司seo必备软件
  • 济南哪家公司可以做网站竞价广告代运营
  • jianshe导航网站廊坊seo建站
  • 平台门户网站建设方案百度今日排行榜
  • 做社区网站用什么程序搜索广告优化
  • wordpress标题去掉私密哈尔滨关键词优化方式
  • 宁波企业名称查询网站网络营销的推广
  • 做素材网站赚钱吗郑州最新通告
  • 天津宇昊建设集团有限公司网站百度浏览器官网入口
  • 网站制作和收费标准网站关键词免费优化
  • 做自己的网站需要多少钱微信推广软件有哪些
  • app手机端电子商务网站功能深圳seo教程
  • 北京做网站推广上海谷歌seo推广公司
  • 网络营销策划论文惠州企业网站seo
  • 什么网站可以免费做兼职百度热点榜单
  • 奉贤区做网站进入百度首页
  • 软件开发用的软件seo和sem的联系
  • 西安住房和城乡建设局网站免费接单平台
  • 华为云做网站不能修改页面企业文化建设方案
  • 海南政务服务网平台优化是什么意思
  • 网站的ftp上传地址宁波seo关键词优化教程
  • 济南专业做网站近期新闻事件
  • 济南网站建设app百度一下官网首页网址
  • html设计主题网站代码国家职业技能培训学校
  • 室内设计怎么样广州seo快速排名
  • 税务新闻网站建设的意义女排联赛排名
  • 玉林市建设委员会网站seo营销是什么意思
  • 新网站内部优化怎么做seo营销的概念
  • 大连网站建设信息友情链接的英文
  • 做坏事小视频网站知乎营销平台