摘要: class Solution { public: int minDistance(string word1, string word2) { int n1=word1.size(),n2=word2.size(); int dp[n1+1][n2+1]; for(int i=0;i<=n1;i++) 阅读全文
posted @ 2020-07-28 16:29 阿破 阅读(94) 评论(0) 推荐(0)