AdvancedVocabulary#software-architecture#developer-tools#backend

Suffix Array Vocabulary

Learn the vocabulary of a sorted array of every suffix's starting position, enabling fast substring search.

0 / 5 completed
1 / 5
At standup, a dev mentions a sorted array listing the starting position of every suffix of a string, letting any substring search be answered with a binary search over that sorted array instead of scanning the whole string. What is this structure called?