前言
http://oyjh1986.blog.163.com/blog/static/19601607620118293262941/
面试之前,总结一下dp。具体概念,看我的之前写的有关dp的博客,这里主要总结LCS,0-1背包,数组分割,数中和最大的子数组,数组的最长递增子序列,以及字符串的相似度。
接下来分为俩部分,第一部分,引入各个算法的关键代码。第二部分,主要是表格总结,包括时间和空间复杂度,递推关系式。
关键代码分析
LCS:
#include<iostream>
#include<queue>
using namespace std;
//find the longest common string of str1 and str2.
//the Recurrence formula is c[i][j]=max(c[i][j-1],c[i-1][j]),if str1[i]=str2[j];c[i][j]=c[i-1][j-1],if str1[i]!=str2[j].
const int N=10;
int mark[N][N];
void findLCS(char* Str1,char* Str2,int str1Len,int str2Len)
{
int** c=new int*[str1Len+1];
for(int i=0;i<=str1Len;++i)
c[i]=new int[str2Len+1];
for(int i=0;i<=str1Len;++i)
c[i][0]=0;
for(int i=0;i<