suffix_array (270B)
1 # Suffix array 2 3 can be used for [pattern_matching], because the occurrences of a pattern form a contiguous sequence of the suffix array 4 5 can be used for [longest_common_extension], when adding an [lcp_table] 6 7 Up: [stringology], [data_structure] 8 9 See also: [suffix_tree]