文本類似度算法(一):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; /* 求出兩
相關文章
相關標籤/搜索