摘要: 一、1.Edit Distance 1 class Solution 2 { 3 public: 4 int minDistance(string t1,string t2) 5 { 6 int len1=t1.size(),len2=t2.size(); 7 ... 阅读全文
posted @ 2015-05-28 08:37 Ryan in C++ 阅读(236) 评论(0) 推荐(0)