2018年8月8日

暴力求解最长公共子串

摘要: 1 #include 2 #include 3 using namespace std; 4 5 string longestStr(string str1, string str2) { 6 int len1 = str1.size(); 7 int len2 = str2.size(); 8 int i, j; 9 int max = ... 阅读全文

posted @ 2018-08-08 08:08 狗剩的美丽家园 阅读(465) 评论(0) 推荐(0) 编辑

导航