Category
page 1String data structures
suffix tree
computer science term: compressed trie containing all the suffixes of the given text
Patricia tree
data structure that represents a space-optimized trie in which each node that is the only child is merged with its parent
suffix array
computer science term: sorted array of all suffixes of a string
null-terminated string
character string terminated by the null byte (0x00); used in e.g. the C programming language
deterministic acyclic finite state automaton
computer data structure that represents a finite set of strings
rope
data structure representing a long string as a tree of separate substrings to permit efficient random insertions and deletions
LCP array
auxiliary data structure to the suffix array
Wavelet Tree
succinct data structure
gap buffer
dynamic array data structure