2014年7月20日

longest common substring

摘要: public static String lcs(String a, String b){ int aLen = a.length(); int bLen = b.length(); if(aLen==0 || bLen==0) return ""; if(a.char... 阅读全文

posted @ 2014-07-20 10:35 brave_bo 阅读(121) 评论(0) 推荐(0)

导航