edit distance

Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)

You have the following 3 operations permitted on a word:

a) Insert a character
b) Delete a character

c) Replace a character

      嗯~~这道题用dp来做~~

#include<iostream>
#include<string>
#include<cstring>	
int dp[1000][1000];
int minn(int a,int b,int c)
{
	if(a<=b&&a<=c)
	{
		return a;
	}
	else if(b<=a&&b<=c)
	{
		return b;
	}
	else if(c<=a&&c<=b)
	{
		return c;
	}
}
int main() 
{
	std::ios::sync_with_stdio(false);
	std::string yuan;
	std::string md;
	std::cin>>yuan>>md;
	int leny=yuan.length();
	int lenm=md.length();
	for(int s=0;s<=leny;s++)
	{
		dp[s][0]=s;
	}
	for(int s=0;s<=lenm;s++)
	{
		dp[0][s]=s;
	}
	for(int s=1;s<=leny;s++)
	{
		for(int x=1;x<=lenm;x++)
		{
			int spot=1;
			if(yuan[s-1]==md[x-1])
			{
				spot=0;
			}
			dp[s][x]=minn(dp[s-1][x]+1,dp[s][x-1]+1,dp[s-1][x-1]+spot);
		}
	}
	for(int s=0;s<=leny;s++)
	{
		for(int x=0;x<=lenm;x++)
		{
			std::cout<<dp[s][x];
		}
		std::cout<<std::endl;
	}
	std::cout<<dp[leny][lenm]<<std::endl;
	return 0;
}

全部评论

相关推荐

03-28 14:34
中南大学 Java
网易互娱明天的笔试是在一天之内任意选时间作答,那不就等于说可以抄答案?那为什么要发笔试?美团也说不拿笔试卡人,那为什么要发笔试?觉得学生们很有时间是吗?&nbsp;还有那些笔试全A了没有进面的,笔试的意义到底在哪里?
no_work_no_life:网易互娱的笔试本来就很简单 美团的确实不按笔试刷人,但是笔试是捞人的重要依据,尤其对于双非学生……我一面的时候面试官直接说是看我笔试成绩还可以就把我捞起来了……
投递美团等公司6个岗位 >
点赞 评论 收藏
分享
昨天 12:26
已编辑
中南大学 PHP
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务