取子串的函数: str.substr(startpos, length) 动态规划要注意初始化 时间复杂度O(mn), 空间复杂度O(mn) string LCS(string str1, string str2) { // write code here int m=str1.size(), n=str2.size(); int maxlen=0, pos=-1; vector<vector<int>> dp(m, vector<int>(n)); for(int i...