文本类似度算法(一):LCS动态规划

#include<iostream> #include<algorithm> #include<string> #include<cassert> #include<fstream> using namespace std; char s1[100]; char s2[100]; int dp[105][105] = { 0 }; int s1_len; int s2_len; /* 求出两
相关文章
相关标签/搜索