南郵 | 算法分析與設計實驗二:動態規劃法

題目:用動態規劃法實現求兩序列的最長公共子序列。 程序代碼 #include <iostream> #include <cstring> //memset需要用到這個庫 #include <algorithm> using namespace std; int const MaxLen = 50; class LCS { public: LCS(int nx, int ny, char
相關文章
相關標籤/搜索