Изменения

Перейти к: навигация, поиск

Алгоритм Укконена

214 байт убрано, 22:21, 14 апреля 2015
Реализация
Node[] children;
Node suffixLink;
 
Node(int begin, int end, int depth, Node parent) {
this.begin = begin;
this.end = end;
this.parent = parent;
this.depth = depth;
children = new Node[ALPHABET.length()];
}
}
public static Node buildSuffixTree(CharSequence s) {
275
правок

Навигация