Suffix array can be created by performing __________ traversal of a suffix tree.
Suffix array can be created by performing __________ traversal of a suffix tree. Correct Answer depth-first
A suffix tree is a trie, which contains all the suffixes of the given string as their keys and positions in the string as their values. So, we can construct a suffix array by performing the depth-first traversal of a suffix tree.