码迷,mamicode.com
首页 > 其他好文 > 详细

最长公共子序列

时间:2017-04-07 22:04:45      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:close   分享   ide   ios   space   pre   using   play   std   

技术分享
 1 //最长公共子序列 
 2 #include<iostream>
 3 #include<cstdio>
 4 #include<cstdlib>
 5 using namespace std;
 6 string s1,s2;
 7 int f[100][100];
 8 int main()
 9 {
10     cin>>s1>>s2;
11     int len1=s1.length(),len2=s2.length();
12     for(int i=1;i<=len1;i++)
13     {
14         for(int j=1;j<=len2;j++)
15         {
16             if(s1[i-1]==s2[j-1])
17             f[i][j]=f[i-1][j-1]+1;
18             else
19             f[i][j]=max(f[i-1][j],f[i][j-1]);
20         }
21     }
22     printf("%d",f[len1][len2]);
23     return 0;
24 }
View Code

 

最长公共子序列

标签:close   分享   ide   ios   space   pre   using   play   std   

原文地址:http://www.cnblogs.com/zzyh/p/6679798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!