0

If we have the suffix tree of a string and also that suffix tree is not an ukkonen's suffix tree i.e., we are given with a normal suffix tree where edge labels are strings. How to efficiently get back original string from that suffix tree?

sntchaitu
  • 1
  • 2
  • 6

1 Answers1

1

The original string is the longest suffix, so you can just do a depth-first search to find the node for the longest string in the tree.

Matt Timmermans
  • 53,709
  • 3
  • 46
  • 87