算法實現-->最長公共子串

/* * 最長公共子串 * Longest Common SubString * */ public class LCSS { String str1,str2; String sub; LCSS(String str1,String str2){ this.str1=str1; this.str2=str2; } public static
相關文章
相關標籤/搜索