摘要: AC自动机 js class ACNode { constructor(data){ this.data = data this.isEndingChar = false this.children = new Map() this.length = 0 this.fail = null } } c 阅读全文
posted @ 2019-05-04 23:41 pluscat 阅读(333) 评论(0) 推荐(0) 编辑