What are the maximum and minimum number of nodes in a suffix tree? And how can I prove it?
|
closed as off topic by Jamey Sharp, Emil Vikström, Jonathan Dursi, Sam I am, andrewsi Nov 15 '12 at 19:34
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Assuming an input text of Proof of minimum: There must be at least one leaf node for every suffix, and there are
Hence the minimum is Proof of maximum: The number of leaf nodes can never be larger than To see that this is not only a theoretical upper bound, but some suffix trees actually reach this maximum, consider as an example a string with just one repeated character: 'aaa$'. Confirm that the suffix tree for this has 7 nodes (including root and leaves):
Summary: As evident, the only real variable is the number of inner nodes; the number of roots and leaves is constant at |
||||
|

