UVA - 10192 Vacation

题目大意:求两个字符串的最长公共子序列ios 解题思路:dp 状态转移方程spa #include <iostream> #include <cstdio> #include <cstring> using namespace std; int main() { char A[105], B[105]; int t = 0; while (gets(A) && A[0] != '#') {
相关文章
相关标签/搜索