I'm using a list of synonyms to direct a process of query expansion. The format looks like this:

fu=foo
ba=bar
etc=etcetera
werd=word

I'm using a straightforward binary search algorithm to run each of the user input words against this list. The problem is, when it comes to using phrases.

    quick brown fox=alphabet
    out of this world=space
    why hello there=hello

Typical input: why hello there, where can I get an out of this world hopper?

And the desired output is: hello, where can I get an space hopper?

I don't want to run each word pair or tripple through the search too, and I want to avoid a linear search of the thesaurus list against the input as this is inefficient (although the list should be quite small so this an option).

Therefore I'm looking for ways to run binary search on phrases, or to construct the thesaurus in such a way as to compensate for phrases.

I'm using PHP for this. Any suggestions most welcome.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

The simple approach would be using str_replace. I don't know about the performance though.

$list = array('out of this world' => 'space');
$str = 'why hello there, where can I get an out of this world hopper?';

foreach ($list as $old => $new) {
    $str = str_replace($old, $new, $str);
}

Edit: I've often noticed that it's more efficient to use built-in functions instead of writing your own because the built-ins are already compiled but your optimized algorithm needs to be interpreted which is a huge slowdown.

link|improve this answer
Indeed you're right. Simple but effective. – AlexW Dec 1 '11 at 22:55
Internally str_replace does a loop when you pass an array. Probably not significant unless there's a super long subject or a few hundred entries. – mario Dec 1 '11 at 22:58
feedback

My first idea would be to use an associative array like this

$thesaurus = array(
   'alphabet'  => 'quick brown fox',
   'space'     => 'out of this world',
   'hello'     => 'why hello there'
);

That way you can use built in array_search functions which will be faster than anything you could write in PHP (I think).

link|improve this answer
You're right, that may well be quicker than writing my own algorithm. Thanks. – AlexW Dec 1 '11 at 22:50
I think if you combine this with @RCE's answer you could be on the right path – vascowhite Dec 1 '11 at 22:54
feedback

Use preg_replace_callback instead of the whatever you did now. PCRE happens to be quite efficient at string searching, because that's what it was made for.

You just need to build a single alternatives list, then do the actual replacing via the original map/dictionary in the callback.

$phrases = array(...);

$rx = implode("|", array_keys($phrases));
$text = preg_replace("/\b($rx)\b/musie", '$phrases["\1"]', $text);

Just using an /e expression here, a callback might be more useful.

link|improve this answer
Nice approach, yes, thanks a lot. Sorry but what does /musie mean here? Are these specific preg flags? – AlexW Dec 1 '11 at 22:53
1  
Yes, regex flags. You only need /ie here, but the others don't hurt; and look fancy. – mario Dec 1 '11 at 22:54
feedback

Your Answer

 
or
required, but never shown

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