Ukkonen's algorithm

From Wiki @ Karl Jones dot com
Revision as of 19:36, 16 May 2016 by Karl Jones (Talk | contribs) (Created page with "In computer science, '''Ukkonen's algorithm''' is a linear-time, online algorithm for constructing suffix trees, proposed by Esko Ukkonen in 1995....")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

In computer science, Ukkonen's algorithm is a linear-time, online algorithm for constructing suffix trees, proposed by Esko Ukkonen in 1995.

Description

The algorithm begins with an implicit suffix tree containing the first character of the string.

Then it steps through the string adding successive characters until the tree is complete.

This order addition of characters gives Ukkonen's algorithm its "on-line" property.

The original algorithm presented by Peter Weiner proceeded backward from the last character to the first one from the shortest to the longest suffix.

A simpler algorithm was found by Edward M. McCreight, going from the longest to the shortest suffix.

See also

External links