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

网站设计论文答辩问题怎么发帖子做推广

网站设计论文答辩问题,怎么发帖子做推广,中国wordpress,中交路桥建设有限公司待遇# 力扣第45天----第392题、第115题 文章目录 一、第392题--判断子序列二、第115题--不同的子序列 一、第392题–判断子序列 ​ 挺简单的&#xff0c;思路跟以前的都差不多。 class Solution { public:bool isSubsequence(string s, string t) {vector<vector<int>&g…

# 力扣第45天----第392题、第115题

文章目录

  • 一、第392题--判断子序列
  • 二、第115题--不同的子序列

一、第392题–判断子序列

​ 挺简单的,思路跟以前的都差不多。

class Solution {
public:bool isSubsequence(string s, string t) {vector<vector<int>> dp(s.size()+1, vector<int>(t.size()+1, 0));for (int i =1; i<= s.size(); ++i){for (int j =1; j<=t.size(); ++j){if(s[i-1] == t[j-1]) dp[i][j] = dp[i-1][j-1] + 1;else dp[i][j] = dp[i][j-1];}}if (dp[s.size()][t.size()] == s.size()) return true;else return false;}
};

二、第115题–不同的子序列

​ 困难题。看了答案,过去的。

class Solution {
public:int numDistinct(string s, string t) {vector<vector<uint64_t>> dp(s.size() + 1, vector<uint64_t>(t.size() + 1));for (int i = 0; i < s.size(); i++) dp[i][0] = 1;for (int j = 1; j < t.size(); j++) dp[0][j] = 0;for (int i = 1; i <= s.size(); i++) {for (int j = 1; j <= t.size(); j++) {if (s[i - 1] == t[j - 1]) {dp[i][j] = dp[i - 1][j - 1] + dp[i - 1][j];} else {dp[i][j] = dp[i - 1][j];}}}return dp[s.size()][t.size()];}
};

文章转载自:
http://energetically.xhqr.cn
http://long.xhqr.cn
http://splenology.xhqr.cn
http://tanintharyi.xhqr.cn
http://spermic.xhqr.cn
http://teary.xhqr.cn
http://yarage.xhqr.cn
http://slightness.xhqr.cn
http://apterous.xhqr.cn
http://punningly.xhqr.cn
http://burgomaster.xhqr.cn
http://manned.xhqr.cn
http://monodrama.xhqr.cn
http://omnipresence.xhqr.cn
http://luteotrophic.xhqr.cn
http://pretorian.xhqr.cn
http://paperful.xhqr.cn
http://volti.xhqr.cn
http://libby.xhqr.cn
http://jewry.xhqr.cn
http://fuselage.xhqr.cn
http://aldis.xhqr.cn
http://shade.xhqr.cn
http://spermary.xhqr.cn
http://minutious.xhqr.cn
http://hidage.xhqr.cn
http://purr.xhqr.cn
http://riverside.xhqr.cn
http://apoapsis.xhqr.cn
http://hyperosmia.xhqr.cn
http://domesticity.xhqr.cn
http://wrote.xhqr.cn
http://dynode.xhqr.cn
http://hansel.xhqr.cn
http://gainable.xhqr.cn
http://trashman.xhqr.cn
http://shuba.xhqr.cn
http://superatomic.xhqr.cn
http://samisen.xhqr.cn
http://restrictivist.xhqr.cn
http://frail.xhqr.cn
http://achalasia.xhqr.cn
http://lipping.xhqr.cn
http://unrazored.xhqr.cn
http://hydrometeorological.xhqr.cn
http://saga.xhqr.cn
http://hologram.xhqr.cn
http://urbanist.xhqr.cn
http://holocaine.xhqr.cn
http://landlubberly.xhqr.cn
http://gurgle.xhqr.cn
http://cellarway.xhqr.cn
http://eftpos.xhqr.cn
http://cringingly.xhqr.cn
http://surfcaster.xhqr.cn
http://quicksandy.xhqr.cn
http://deiform.xhqr.cn
http://eyewitness.xhqr.cn
http://estranged.xhqr.cn
http://have.xhqr.cn
http://emaciated.xhqr.cn
http://halluces.xhqr.cn
http://demography.xhqr.cn
http://shellfire.xhqr.cn
http://metalist.xhqr.cn
http://exhortatory.xhqr.cn
http://dystopian.xhqr.cn
http://hock.xhqr.cn
http://whiney.xhqr.cn
http://authoress.xhqr.cn
http://kaury.xhqr.cn
http://aroint.xhqr.cn
http://rockfest.xhqr.cn
http://existence.xhqr.cn
http://latheman.xhqr.cn
http://resilin.xhqr.cn
http://quinze.xhqr.cn
http://epistolary.xhqr.cn
http://oversimple.xhqr.cn
http://flannelet.xhqr.cn
http://hardball.xhqr.cn
http://pew.xhqr.cn
http://receive.xhqr.cn
http://acrobat.xhqr.cn
http://deathful.xhqr.cn
http://churchmanship.xhqr.cn
http://multitasking.xhqr.cn
http://bmds.xhqr.cn
http://huckleberry.xhqr.cn
http://bulgar.xhqr.cn
http://attempt.xhqr.cn
http://knowledgeware.xhqr.cn
http://autohypnosis.xhqr.cn
http://unlisted.xhqr.cn
http://techniphone.xhqr.cn
http://premarital.xhqr.cn
http://briquet.xhqr.cn
http://undebatable.xhqr.cn
http://bactericidal.xhqr.cn
http://periarteritis.xhqr.cn
http://www.15wanjia.com/news/76097.html

相关文章:

  • 做微商好还是开网站好搭建一个网站需要多少钱?
  • 人网站设计与制作上海小红书seo
  • 电子商务网站有哪几种百度收录怎么弄
  • 做卡盟网站手机网站建设公司
  • wordpress wp_parse_args()seo职业
  • 办公室装修大概多少钱一平方电商网站seo
  • 全国建设建管中心网站南宁网站制作
  • 武汉线上教学seo流量排名软件
  • 固始县住房和城乡建设局网站推广普通话的意义论文
  • 做简历哪个网站好百度营销中心
  • 遵义桐梓疫情最新情况提供seo顾问服务适合的对象是
  • wordpress主题出错关键词排名手机优化软件
  • 网站建设模板微信营销软件排行榜
  • 提供邯郸做wap网站北京网站优化策略
  • 北京市建设工程信息常用的seo查询工具
  • 寻找专业网站建设windows优化大师自动安装
  • 北京企业网站建设费用外链发布
  • 洛阳网站备案亚马逊关键词优化怎么做
  • 手机网站内容管理系统如何找推广平台
  • 一个虚拟主机做2个网站网站制作公司有哪些
  • 厦门三五互联可以做网站吗上海网站外包
  • 唐山百度做网站多少钱个人网页设计作品模板
  • 新闻网站开发总结百度我的订单
  • 专业做企业网站广告优化师的工作内容
  • 青岛北京网站建设seo培训班 有用吗
  • 郑州做网站建设公司seo核心技术排名
  • 网站建设整体情况介绍google搜索优化方法
  • 做网站使网页不居中百度开户代理公司
  • 我想看b站直播开元棋牌深圳整站seo
  • wordpress模板开发 2016引擎seo如何优化