摘要: 1 class Trie 2 { 3 int [][]Next=new int[500005][128]; 4 int []fail=new int[500005]; 5 int []end=new int[500005]; 6 int root, L; 7 ... 阅读全文
posted @ 2015-07-09 09:04 Empress 阅读(1054) 评论(0) 推荐(0) 编辑