摘要: LCS算法 3. 设计 1 #include<stdio.h> 2 #include<string.h> 3 const int maxn = 1000 + 10; 4 char x[maxn], y[maxn]; 5 int dp[maxn][maxn]; 6 int b[maxn][maxn]; 阅读全文
posted @ 2020-04-21 20:14 JayShao 阅读(169) 评论(0) 推荐(0)