Efficient string matching algorithm

后端 未结 14 799
Happy的楠姐
Happy的楠姐 2020-12-16 07:13

I\'m trying to build an efficient string matching algorithm. This will execute in a high-volume environment, so performance is critical.

Here are my requirements:

相关标签:
14条回答
  • 2020-12-16 08:00

    If it was just matching strings, then you should look at trie datastructures and algorithms. An earlier answer suggests that, if all your wildcards are a single wildcard at the beginning, there are some specific algorithms you can use. However, a requirement to handle general wildcards means that, for fast execution, you're going to need to generate a state machine.

    That's what a regex library does for you: "precompiling" the regex == generating the state machine; this allows the actual match at runtime to be fast. You're unlikely to get significantly better performance than that without extraordinary optimization efforts.

    If you want to roll your own, I can say that writing your own state machine generator specifically for multiple wildcards should be educational. In that case, you'll need to read up on the kind of algorithms they use in regex libraries...

    0 讨论(0)
  • 2020-12-16 08:02

    you don't need regexp .. just reverse all the strings, get rid of '*', and put a flag to indicate partial match till this point passes.

    Somehow, a trie or suffix trie looks most appropriate.

    If the list of domains is known at compile time, you may look at tokenizing at '.' and using multiple gperf generated machines.

    Links: google for trie http://marknelson.us/1996/08/01/suffix-trees/

    0 讨论(0)
  • 2020-12-16 08:02

    Given your requirements, I think you're on-track in thinking about working from the end of the string (TLD) towards the hostname. You could use regular expressions, but since you're not really using any of the power of a regexp, I don't see why you'd want to incur their cost. If you reverse the strings, it becomes more apparent that you're really just looking for prefix-matching ('*.example.com' becomes: "is 'moc.elpmaxe' the beginning of my input string?), which certainly doesn't require something as heavy-handed as regexps.

    What structure you use to store your list of entries depends a lot on how big the list is and how often it changes... for a huge stable list, a tree/trie may be the most performant; an often-changing list needs a structure that is easy to initialize/update, and so on. Without more information, I'd be reluctant to suggest any one structure.

    0 讨论(0)
  • 2020-12-16 08:02

    Investigate the KMP (Knuth-Morris-Pratt) or BM (Boyer-Moore) algorithms. These allow you to search the string more quickly than linear time, at the cost of a little pre-processing. Dropping the leading asterisk is of course crucial, as others have noted.

    One source of information for these is:

    KMP: http://www-igm.univ-mlv.fr/~lecroq/string/node8.html

    BM: http://www-igm.univ-mlv.fr/~lecroq/string/node14.html

    0 讨论(0)
  • 2020-12-16 08:03

    If you're looking to roll your own, I would store the entries in a tree structure. See my answer to another SO question about spell checkers to see what I mean.

    Rather than tokenize the structure by "." characters, I would just treat each entry as a full string. Any tokenized implementation would still have to do string matching on the full set of characters anyway, so you may as well do it all in one shot.

    The only differences between this and a regular spell-checking tree are:

    1. The matching needs to be done in reverse
    2. You have to take into account the wildcards

    To address point #2, you would simply check for the "*" character at the end of a test.

    A quick example:

    Entries:

    *.fark.com
    www.cnn.com
    

    Tree:

    m -> o -> c -> . -> k -> r -> a -> f -> . -> *
                    \
                     -> n -> n -> c -> . -> w -> w -> w
    

    Checking www.blog.fark.com would involve tracing through the tree up to the first "*". Because the traversal ended on a "*", there is a match.

    Checking www.cern.com would fail on the second "n" of n,n,c,...

    Checking dev.www.cnn.com would also fail, since the traversal ends on a character other than "*".

    0 讨论(0)
  • 2020-12-16 08:04

    Have a look at RegExLib

    0 讨论(0)
提交回复
热议问题