vote up 2 vote down star
2

Hi,

I'm using C# to continuously search for multiple string "keywords" within large strings, which are >= 4kb. This code is constantly looping, and sleeps aren't cutting down CPU usage enough while maintaining a reasonable speed. The bog-down is the keyword matching method.

I've found a few possibilities, and all of them give similar efficiency.

1) http://tomasp.net/articles/ahocorasick.aspx -I do not have enough keywords for this to be the most efficient algorithm.

2) Regex. Using an instance level, compiled regex. -Provides more functionality than I require, and not quite enough efficiency.

3) String.IndexOf. -I would need to do a "smart" version of this for it provide enough efficiency. Looping through each keyword and calling IndexOf doesn't cut it.

Does anyone know of any algorithms or methods that I can use to attain my goal?

flag

3 Answers

vote up 3 vote down

I haven't tried it, but have you looked at Rabin-Karp? Apparently it has a bad worst-case complexity, but is usually quite good.

What do your keywords look like? In particular, are they always delimited by spaces (or something similar)? If so, you could basically look through the string once looking for "words" and then either create a map from a word to the list of indexes of that word, or perhaps only do so for keywords you're interested in.

If you could give more details of the exact situation (such as the keywords, delimiters and what you need the result of your search to be) that would help.

link|flag
I've been trying to utilize Rabin-Karp. The problem is, that all implementations use a static pattern length to speed up their algorithms. I cannot do this, and when I implement it without a constant pattern length, computation times grow exponentially. – Jon Jun 25 at 15:51
Oh: The text I am searching is always of length 12286. My patterns are of much shorter length- anywhere from 10 to ~50 characters, and are simply words converted into a hex-string. (ex. BitConverter.ToString(ENCODING.GetBytes("no recoil"))) All that I need is to know if any of my patterns occur in the text. – Jon Jun 25 at 15:56
And are there always spaces before and after the words? If so, can you just iterate over the words in the text, and use a normal HashSet<string> to detect whether each word is or isn't a keyword? – Jon Skeet Jun 25 at 16:14
No. The text is in the form XX-XX-XX-XX-XX where each XX is the hexadecimal representation of a byte from a buffer of memory. In fact, I could solve this problem without dealing with strings at all, but instead search byte arrays for bytes. The only reason that I am converting my data from byte[]'s to strings (which take up more memory and have other performance costs) is because I believed that there were more string searching algorithms than byte searching algorithms... I also hoped that Regex would meet my performance requirements... – Jon Jun 25 at 16:40
vote up 2 vote down

I developed an efficient use of IndexOf for this question:

A better way to replace many strings - obfuscation in C#

It uses a list of keywords and their next position in the string. That way you only need to call IndexOf once for each keyword and then once for each match you find. It's especially efficient when replacing keywords in a large string, as you can process the string from start to end instead of processing the entire string once for each keyword. I don't know why you are looking for the keywords in the strings and what you do with the strings, but perhaps it may be useful in your situation.

link|flag
vote up 1 vote down

Are you always looking for the same keywords? Try Boyer-Moore. It requires some pre-processing for the keywords, but gains speed afterwards.

link|flag
The problem is that I can't figure out how to make a Boyer-Moore implementation that works with multiple patterns.. – Jon Jun 25 at 15:56
Simple answer: You can't. But for each individual keyword, searching is much faster. It depends on the number of keyword vs. the average length of the keywords. – ammoQ Jun 25 at 18:38

Your Answer

Get an OpenID
or

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