import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
public class AhoCorasick {
// 前缀树的节点
public static class Node {
// 如果一个node,end为空,不是结尾
// 如果end不为空,表示这个点是某个字符串的结尾,end的值就是这个字符串
public String end;
// 只有在上面的end变量不为空的时候,endUse才有意义
// 表示,这个字符串之前有没有加入过答案
public boolean endUse;
public Node fail;
public Node[] children;
public Node() {
endUse = false;
end = null;
fail = null;
children = new Node[26];
}
}
public static class ACAutomation {
private Node root;
public ACAutomation() {
root = new Node();
}
public void insert(String s) {
char[] str = s.toCharArray();
Node cur = root;
int index;
for (int i = 0; i < str.length; i++) {
index = str[i] - 'a';
if (cur.children[index] == null) {
Node next = new Node();
cur.children[index] = next;
}
cur = cur.children[index];
}
cur.end = s;
}
public void build() {
Queue<Node> queue = new LinkedList<>();
queue.add(root);
Node cur;
Node cfail;
while (!queue.isEmpty()) {
// 当前节点弹出,
// 当前节点的所有后代加入到队列里去,
// 当前节点给它的子去设置fail指针
// cur -> 父亲
cur = queue.poll();
for (int i = 0; i < 26; i++) { // 所有的路
if (cur.children[i] != null) { // 找到所有有效的路
cur.children[i].fail = root;
cfail = cur.fail;
while (cfail != null) {
if (cfail.children[i] != null) {
cur.children[i].fail = cfail.children[i];
break;
}
cfail = cfail.fail;
}
queue.add(cur.children[i]);
}
}
}
}
public List<String> containWords(String content) {
char[] str = content.toCharArray();
Node cur = root;
Node follow;
int path;
List<String> ans = new ArrayList<>();
for (int i = 0; i < str.length; i++) { // 依次遍历文章中的字符,i位置
path = str[i] - 'a'; // 路
// 如果当前字符在这条路上没配出来,就随着fail方向走向下条路径
// 如果当前cur节点,没有path的路,就通过fail,跳到别的前缀上去
while (cur.children[path] == null && cur != root) {
cur = cur.fail;
}
// 1) 现在来到的路径,是可以继续匹配的
// 2) 现在来到的节点,已经是头了
cur = cur.children[path] != null ? cur.children[path] : root;
follow = cur;
while (follow != root) {
if (follow.endUse) {
break;
}
// 不同的需求,在这一段之间修改
if (follow.end != null) {
ans.add(follow.end);
follow.endUse = true;
}
// 不同的需求,在这一段之间修改
follow = follow.fail;
}
}
return ans;
}
}
public static void main(String[] args) {
ACAutomation ac = new ACAutomation();
ac.insert("dhe");
ac.insert("he");
ac.insert("dhek");
ac.insert("abcdheks");
ac.build();
List<String> contains = ac.containWords("abcdhekskdjfafhasldkflskdjhwqaeruv");
for (String word : contains) {
System.out.println(word);
}
}
}
AC自动机
转载
心之所向,素履以往 生如逆旅,一苇以航
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章