Tagged Questions
5
votes
6answers
2k views
The Most Efficient Algorithm to Find First Prefix-Match From a Sorted String Array?
Input:
1) A huge sorted array of string SA;
2) A prefix string P;
Output:
The index of the first string matching the input prefix if any.
If there is no such match, then output will be -1.
...