Rabin-Karp 字符串匹配算法
摘要:
1 public class Main 2 { 3 // d is the number of characters in the input alphabet 4 public final static int d = 256; 5 6 /* pat -> pattern 7 txt -> text... 阅读全文
posted @ 2019-03-08 14:33 wait_for_you 阅读(242) 评论(0) 推荐(0) 编辑