Longest prefix/suffix array for JavaScript. See docs.
import {build} from '@string-data-structure/longest-prefix-suffix-array';
const s = 'abracadabra';
const t = new Int32Array(s.length + 1);
build(s, 0, s.length, t, 0);| Name | Name | Last commit date | ||
|---|---|---|---|---|
Longest prefix/suffix array for JavaScript. See docs.
import {build} from '@string-data-structure/longest-prefix-suffix-array';
const s = 'abracadabra';
const t = new Int32Array(s.length + 1);
build(s, 0, s.length, t, 0);