Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Suffix Trees in Python
================================

Based off of Mark Nelson's C++ implementation of Ukkonen's algorithm. Ukkonen's
algorithm gives a O(n) + O(k) contruction time for a suffix tree, where n is
algorithm gives a O(n) + O(k) construction time for a suffix tree, where n is
the length of the string and k is the size of the alphabet of that string.
Ukkonen's is an online algorithm, processing the input sequentially and producing
a valid suffix tree at each character.
Expand Down