摘要: 1 public static int levenDistance(String s, String t) { 2 if (s == null || t == null) { 3 return 10; 4 } 5 s = s.toLowerCase(); 6 ... 阅读全文
posted @ 2016-06-22 16:31 wq920 阅读(714) 评论(0) 推荐(0) 编辑