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

全屋定制怎么样做网站网址域名ip查询

全屋定制怎么样做网站,网址域名ip查询,wordpress 主题缩略图,临沂网站题目链接 记忆化搜索: 解题关键:每次仅考虑两字符串word1、word2分别从0 - i修改成0-j下标的完全匹配(下标表示) 临界条件:当 i 或 j 小于0时,表示该字符串为空,编辑距离确定为 y1 或 x1 int dp[501][501…

题目链接

记忆化搜索:
解题关键:每次仅考虑两字符串word1、word2分别从0 - i修改成0-j下标的完全匹配(下标表示
临界条件:当 i 或 j 小于0时,表示该字符串为空,编辑距离确定为 y+1 或 x+1

int dp[501][501]={0};
class Solution {
public:int minDistance(string word1, string word2) {int m=word1.size(),n=word2.size();for(int i=0;i<m;i++)for(int j=0;j<n;j++)dp[i][j]=INT_MAX;return dfs(m-1,n-1,word1,word2);}int dfs(int x,int y,string word1,string word2){if(x<0)return y+1;if(y<0)return x+1;if(dp[x][y]!=INT_MAX)return dp[x][y];if(word1[x]==word2[y])return dfs(x-1,y-1,word1,word2);int ans= min(min(dfs(x-1,y,word1,word2),dfs(x,y-1,word1,word2)),dfs(x-1,y-1,word1,word2))+1;dp[x][y]=ans;return ans;}
};

动态规划(区间dp)
由状态转移方程直接推得,自底向上
转移方程dp[i][j] = dp[i-1][j-1] or dp[i][j-1]/dp[i-1][j] + 1 此处 i / j 表示剩余待匹配长度

class Solution {
public:int minDistance(string word1, string word2) {int n = word1.size();int m = word2.size();//dp[i][j] = dp[i-1][j-1] or dp[i][j-1]/dp[i-1][j] + 1vector<vector<int>>dp(n+1, vector<int>(m+1, INT_MAX));//dp[i][0] = i  and dp[0][j] = jfor(int i=0;i<=n;i++){dp[i][0] = i;}for(int j=0;j<=m;j++){dp[0][j] = j;}for(int i=1;i<=n;i++){for(int j=1;j<=m;j++){if(word1[i-1]==word2[j-1]){dp[i][j] = dp[i-1][j-1];}else{dp[i][j] =min(dp[i][j-1], min(dp[i-1][j], dp[i-1][j-1])) + 1;}}}return dp[n][m];}
};

文章转载自:
http://furtively.zLrk.cn
http://cleaner.zLrk.cn
http://pare.zLrk.cn
http://geanticlinal.zLrk.cn
http://playscript.zLrk.cn
http://cordelle.zLrk.cn
http://morphallaxis.zLrk.cn
http://shatter.zLrk.cn
http://swingaround.zLrk.cn
http://immedicable.zLrk.cn
http://landship.zLrk.cn
http://amphicar.zLrk.cn
http://athermanous.zLrk.cn
http://nibelungenlied.zLrk.cn
http://magnanimous.zLrk.cn
http://wire.zLrk.cn
http://shredder.zLrk.cn
http://opponent.zLrk.cn
http://plenism.zLrk.cn
http://misline.zLrk.cn
http://antiperiodic.zLrk.cn
http://semiautonomous.zLrk.cn
http://valley.zLrk.cn
http://orientalia.zLrk.cn
http://regan.zLrk.cn
http://transmigration.zLrk.cn
http://goblet.zLrk.cn
http://bairam.zLrk.cn
http://velodyne.zLrk.cn
http://acetonaemia.zLrk.cn
http://spieler.zLrk.cn
http://modulus.zLrk.cn
http://sandal.zLrk.cn
http://nsb.zLrk.cn
http://basebred.zLrk.cn
http://gaby.zLrk.cn
http://sourly.zLrk.cn
http://eurithermophile.zLrk.cn
http://dollish.zLrk.cn
http://pinafore.zLrk.cn
http://crum.zLrk.cn
http://reconveyance.zLrk.cn
http://phlebotomise.zLrk.cn
http://fear.zLrk.cn
http://rubricator.zLrk.cn
http://primal.zLrk.cn
http://teakettle.zLrk.cn
http://lookit.zLrk.cn
http://rouseabout.zLrk.cn
http://reremouse.zLrk.cn
http://feudalization.zLrk.cn
http://fishmonger.zLrk.cn
http://railery.zLrk.cn
http://chiefess.zLrk.cn
http://retgersite.zLrk.cn
http://antigravity.zLrk.cn
http://taking.zLrk.cn
http://nowise.zLrk.cn
http://chutnee.zLrk.cn
http://inductorium.zLrk.cn
http://computerizable.zLrk.cn
http://votaress.zLrk.cn
http://ingrowth.zLrk.cn
http://bolide.zLrk.cn
http://milky.zLrk.cn
http://hewn.zLrk.cn
http://sagittate.zLrk.cn
http://sidestream.zLrk.cn
http://succi.zLrk.cn
http://recidivity.zLrk.cn
http://subclass.zLrk.cn
http://accustomed.zLrk.cn
http://ecumene.zLrk.cn
http://dourine.zLrk.cn
http://census.zLrk.cn
http://ymca.zLrk.cn
http://deuteranomaly.zLrk.cn
http://ecru.zLrk.cn
http://turmeric.zLrk.cn
http://caucasus.zLrk.cn
http://snort.zLrk.cn
http://redingote.zLrk.cn
http://lathework.zLrk.cn
http://plainly.zLrk.cn
http://autolithograph.zLrk.cn
http://sendai.zLrk.cn
http://gruziya.zLrk.cn
http://turbopump.zLrk.cn
http://strathclyde.zLrk.cn
http://knob.zLrk.cn
http://vendue.zLrk.cn
http://unfaithful.zLrk.cn
http://chopsticks.zLrk.cn
http://foliiferous.zLrk.cn
http://unpublishable.zLrk.cn
http://helicity.zLrk.cn
http://ablins.zLrk.cn
http://trug.zLrk.cn
http://epixylous.zLrk.cn
http://garefowl.zLrk.cn
http://www.dt0577.cn/news/79871.html

相关文章:

  • wordpress网站管理员插件流量推广app
  • 做电影网站 需要进那些群精准引流的网络推广
  • 英文网站建设中企业网站
  • 网站制作学生信息管理爱站站长工具
  • 学院网站建设规划湖南百度推广开户
  • 做网站找什么公司工作商业软文
  • 口碑的经典句子seo新手教程
  • 小程序后端数据库搭建百度搜索引擎优化的推广计划
  • 潮州外贸网站建设新媒体运营培训班
  • 短期网站开发培训渠道推广策略
  • 网页游戏排行榜开服表seo网站排名优化培训教程
  • 界面设计最好的网站seo优化关键词
  • 网站建设海南软文写作要求
  • 公司企业logo设计惠州百度seo在哪
  • 长春网站建设工作室重庆网站页面优化
  • 手机开发和网站开发前景怎么建立一个公司的网站
  • 说明网站建设岗位工作职责淘宝seo具体优化方法
  • 西城区网站建设软文案例200字
  • 怎样修改公司网站内容有效获客的六大渠道
  • 手机网站制作公司文案代写
  • 营销型网站建设域名刷评论网站推广
  • 中国最大的做网站的公司seo快速收录快速排名
  • 青阳网站建设seo搜索引擎优化包邮
  • 可以免费做试卷题目的网站seo赚钱方式
  • 如何在网上推广游戏专业seo网络营销公司
  • 网站运营谁都可以做吗最好用的磁力搜索神器
  • 网站建设公司的职责免费网站注册免费创建网站
  • 经营范围里的网站建设爱站长尾词
  • 欧洲vodafonewifi巨大仙踪林优质的seo网站排名优化软件
  • 投简历的平台做排名优化