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.

Example: SA = {"ab", "abd", "abdf", "abz"} P = "abd" The output should be 1 (index starting from 0).

What's the most algorithm way to do this kind of job?

link|improve this question

62% accept rate
You say sorted but your example isn't sorted using normal lexical ordering. Is this a mistake? – Nick Fortescue Jan 19 '09 at 10:48
yes, it is a mistake. have correct it. – Morgan Cheng Jan 19 '09 at 12:39
feedback

6 Answers

up vote 9 down vote accepted

If you only want to do this once, use binary search, if on the other hand you need to do it for many different prefixes but on the same string array, building a radix tree can be a good idea, after you've built the tree each look up will be very fast.

link|improve this answer
Best case lookup time for a radix tree is O(n) where n is the number of characters, while binary search takes O(log m) where m is the size of the list. It's not necessarially true that radix search will be faster. – Nick Johnson Jan 19 '09 at 11:25
Arachnid: This is not true. Even in the best case (where there is a match), binary search is O(n + log m), since it must read the entire prefix to check if it matches. In the worst case it is O(nlogm). – Brian Jan 19 '09 at 11:35
@Arachnid: +1 for Brian's comment, plus O(n) is WORST case lookup for radix tree, where there is a match and you need to read the whole prefix. – James Brady Jan 19 '09 at 12:27
Well, a binary search is almost trivial to implement, and takes no additional memory. Radix trees are complicated to implement, take extra memory, and the benefit isn't huge – FryGuy Jan 24 '09 at 21:16
feedback

This is just a modified bisection search:

  • Only check as many characters in each element as are in the search string; and
  • If you find a match, keep searching backwards (either linearly or by further bisection searches) until you find a non-matching result and then return the index of the last matching result.
link|improve this answer
feedback

It can be done in linear time using a Suffix Tree. Building the suffix tree takes linear time.

link|improve this answer
He could compare the prefix to each element in linear time too. – Ryan Fox Jan 19 '09 at 13:07
True, but if he's going check more than one prefix, that's not a good idea. – Brian Jan 20 '09 at 3:39
feedback

The FreeBSD kernel use a Radix tree for its routing table, you should check that.

link|improve this answer
feedback

My current solution in mind is, instead of to find the "prefix", try to find a "virtual prefix".

For example, prefix is “abd", try to find a virtual-prefix “abc(255)". (255) just represents the max char number. After locating the "abc(255)". The next word should be the first word matching "abd" if any.

link|improve this answer
feedback

Are you in the position to precalculate all possible prefixes?

If so, you can do that, then use a binary search to find the prefix in the precalculated table. Store the subscript to the desired value with the prefix.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.