Hashtable/dictionary/map lookup with regular expressions - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T14:55:20Zhttp://stackoverflow.com/feeds/question/260056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions8Hashtable/dictionary/map lookup with regular expressionsJeff2008-11-03T21:39:38Z2009-05-03T01:18:14Z
<p>I'm trying to figure out if there's a reasonably efficient way to perform a lookup in a dictionary (or a hash, or a map, or whatever your favorite language calls it) where the keys are regular expressions and strings are looked up against the set of keys. For example (in Python syntax):</p>
<pre><code>>>> regex_dict = { re.compile(r'foo.') : 12, re.compile(r'^FileN.*$') : 35 }
>>> regex_dict['food']
12
>>> regex_dict['foot in my mouth']
12
>>> regex_dict['FileNotFoundException: file.x does not exist']
35
</code></pre>
<p>(Obviously the above example won't work as written in Python, but that's the sort of thing I'd like to be able to do.)</p>
<p>I can think of a naive way to implement this, in which I iterate over all of the keys in the dictionary and try to match the passed in string against them, but then I lose the O(1) lookup time of a hash map and instead have O(n), where n is the number of keys in my dictionary. This is potentially a big deal, as I expect this dictionary to grow very large, and I will need to search it over and over again (actually I'll need to iterate over it for every line I read in a text file, and the files can be hundreds of megabytes in size).</p>
<p>Is there a way to accomplish this, without resorting to O(n) efficiency?</p>
<p>Alternatively, if you know of a way to accomplish this sort of a lookup in a database, that would be great, too.</p>
<p>(Any programming language is fine -- I'm using Python, but I'm more interested in the data structures and algorithms here.)</p>
<p>Someone pointed out that more than one match is possible, and that's absolutely correct. Ideally in this situation I'd like to return a list or tuple containing all of the matches. I'd settle for the first match, though.</p>
<p>I can't see O(1) being possible in that scenario; I'd settle for anything less than O(n), though. Also, the underlying data structure could be anything, but the basic behavior I'd like is what I've written above: lookup a string, and return the value(s) that match the regular expression keys.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260075#2600750Answer by Jimmy for Hashtable/dictionary/map lookup with regular expressionsJimmy2008-11-03T21:44:21Z2008-11-03T21:44:21Z<p>The fundamental assumption is flawed, I think. you can't map hashes to regular expressions. </p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260077#2600774Answer by Adam Rosenfield for Hashtable/dictionary/map lookup with regular expressionsAdam Rosenfield2008-11-03T21:44:41Z2008-11-03T21:44:41Z<p>This is not possible to do with a regular hash table in any language. You'll either have to iterate through the entire keyset, attempting to match the key to your regex, or use a different data structure.</p>
<p>You should choose a data structure that is appropriate to the problem you're trying to solve. If you have to match against any arbitrary regular expression, I don't know of a good solution. If the class of regular expressions you'll be using is more restrictive, you might be able to use a data structure such as a <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">trie</a> or <a href="http://en.wikipedia.org/wiki/Suffix_tree" rel="nofollow">suffix tree</a>.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260079#2600790Answer by Moe for Hashtable/dictionary/map lookup with regular expressionsMoe2008-11-03T21:44:49Z2008-11-03T21:44:49Z<p>I don't think it's even theoretically possible. What happens if someone passes in a string that matches more than 1 regular expression. </p>
<p>For example, what would happen if someone did:</p>
<pre><code>>>> regex_dict['FileNfoo']
</code></pre>
<p>How can something like that possibly be O(1)?</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260085#2600851Answer by Eli Courtwright for Hashtable/dictionary/map lookup with regular expressionsEli Courtwright2008-11-03T21:46:56Z2008-11-03T21:46:56Z<p>What happens if you have a dictionary such as</p>
<pre><code>regex_dict = { re.compile("foo.*"): 5, re.compile("f.*"): 6 }
</code></pre>
<p>In this case <code>regex_dict["food"]</code> could legitimately return either 5 or 6.</p>
<p>Even ignoring that problem, there's probably no way to do this efficiently with the regex module. Instead, what you'd need is an internal directed graph or tree structure.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260114#2601143Answer by Glomek for Hashtable/dictionary/map lookup with regular expressionsGlomek2008-11-03T21:53:03Z2008-11-03T21:53:03Z<p>In the general case, what you need is a lexer generator. It takes a bunch of regular expressions and compiles them into a recognizer. "lex" will work if you are using C. I have never used a lexer generator in Python, but there seem to be a few to choose from. Google shows <a href="http://www.dabeaz.com/ply/" rel="nofollow">PLY</a>, <a href="http://www.lava.net/~newsham/pyggy/" rel="nofollow">PyGgy</a> and <a href="http://margolis-yateley.org.uk/python/various/index.php" rel="nofollow">PyLexer</a>.</p>
<p>If the regular expressions all resemble each other in some way, then you may be able to take some shortcuts. We would need to know more about the ultimate problem that you are trying to solve in order to come up with any suggestions. Can you share some sample regular expressions and some sample data?</p>
<p>Also, how many regular expressions are you dealing with here? Are you sure that the naive approach <em>won't</em> work? As Rob Pike <a href="http://www.lysator.liu.se/c/pikestyle.html" rel="nofollow">once said</a>, "Fancy algorithms are slow when n is small, and n is usually small." Unless you have thousands of regular expressions, and thousands of things to match against them, and this is an interactive application where a user is waiting for you, you may be best off just doing it the easy way and looping through the regular expressions.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260120#2601201Answer by sylvarking for Hashtable/dictionary/map lookup with regular expressionssylvarking2008-11-03T21:54:01Z2008-11-03T21:54:01Z<p>As other respondents have pointed out, it's not possible to do this with a hash table in constant time.</p>
<p>One approximation that might help is to use a technique called <a href="http://en.wikipedia.org/wiki/Ngram#n-grams_for_approximate_matching" rel="nofollow">"n-grams"</a>. Create an inverted index from n-character chunks of a word to the entire word. When given a pattern, split it into n-character chunks, and use the index to compute a scored list of matching words.</p>
<p>Even if you can't accept an approximation, in most cases this would still provide an accurate filtering mechanism so that you don't have to apply the regex to every key.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260421#2604210Answer by fivebells for Hashtable/dictionary/map lookup with regular expressionsfivebells2008-11-04T00:13:40Z2008-11-04T00:13:40Z<p>It <em>may</em> be possible to get the regex compiler to do most of the work for you by concatenating the search expressions into one big regexp, separated by "|". A clever regex compiler might search for commonalities in the alternatives in such a case, and devise a more efficient search strategy than simply checking each one in turn. But I have no idea whether there are compilers which will do that.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260591#2605910Answer by ididak for Hashtable/dictionary/map lookup with regular expressionsididak2008-11-04T01:57:30Z2008-11-04T01:57:30Z<p>It really depends on what these regexes look like. If you don't have a lot regexes that will match almost anything like '<code>.*</code>' or '<code>\d+</code>', and instead you have regexes that <em>contains</em> mostly words and phrases or any fixed patterns longer than 4 characters (e.g.'<code>a*b*c</code>' in <code>^\d+a\*b\*c:\s+\w+</code>) , as in your examples. You can do this common trick that scales well to millions of regexes:</p>
<p>Build a inverted index for the regexes (rabin-karp-hash('fixed pattern') -> list of regexes containing 'fixed pattern'). Then at matching time, using Rabin-Karp hashing to compute sliding hashes and look up the inverted index, advancing one character at a time. You now have O(1) look-up for inverted-index non-matches and a reasonable O(k) time for matches, k is the average length of the lists of regexes in the inverted index. k can be quite small (less than 10) for many applications. The quality (false positive means bigger k, false negative means missed matches) of the inverted index depends on how well the indexer understands the regex syntax. If the regexes are generated by human experts, they can provide hints for contained fixed patterns as well.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260886#2608861Answer by Brad Gilbert for Hashtable/dictionary/map lookup with regular expressionsBrad Gilbert2008-11-04T04:31:23Z2008-11-04T04:31:23Z<p>There is a Perl module that does just this <a href="http://search.cpan.org/~davecross/Tie-Hash-Regex-1.02/lib/Tie/Hash/Regex.pm" rel="nofollow">Tie::Hash::Regex</a>.</p>
<pre><code>use Tie::Hash::Regex;
my %h;
tie %h, 'Tie::Hash::Regex';
$h{key} = 'value';
$h{key2} = 'another value';
$h{stuff} = 'something else';
print $h{key}; # prints 'value'
print $h{2}; # prints 'another value'
print $h{'^s'}; # prints 'something else'
print tied(%h)->FETCH(k); # prints 'value' and 'another value'
delete $h{k}; # deletes $h{key} and $h{key2};
</code></pre>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/260942#2609420Answer by Darius Bacon for Hashtable/dictionary/map lookup with regular expressionsDarius Bacon2008-11-04T05:02:57Z2008-11-04T05:02:57Z<p>A special case of this problem came up in the 70s AI languages oriented around deductive databases. The keys in these databases could be patterns with variables -- like regular expressions without the * or | operators. They tended to use fancy extensions of trie structures for indexes. See krep*.lisp in Norvig's <a href="http://norvig.com/paip/" rel="nofollow">Paradigms of AI Programming</a> for the general idea.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/261070#2610702Answer by Trevor Strohman for Hashtable/dictionary/map lookup with regular expressionsTrevor Strohman2008-11-04T06:30:01Z2008-11-04T06:30:01Z<p>This is definitely possible, as long as you're using 'real' regular expressions. A textbook regular expression is something that can be recognized by a <a href="http://en.wikipedia.org/wiki/Deterministic_finite_state_machine" rel="nofollow">deterministic finite state machine</a>, which primarily means you can't have back-references in there.</p>
<p>There's a property of regular languages that "the union of two regular languages is regular", meaning that you can recognize an arbitrary number of regular expressions at once with a single state machine. The state machine runs in O(1) time with respect to the number of expressions (it runs in O(n) time with respect to the length of the input string, but hash tables do too).</p>
<p>Once the state machine completes you'll know which expressions matched, and from there it's easy to look up values in O(1) time.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/261755#2617551Answer by Aaron Digulla for Hashtable/dictionary/map lookup with regular expressionsAaron Digulla2008-11-04T12:39:42Z2008-11-04T12:39:42Z<p>If you have a small set of possible inputs, you can cache the matches as they appear in a second dict and get O(1) for the cached values.</p>
<p>If the set of possible inputs is too big to cache but not infinite, either, you can just keep the last N matches in the cache (check Google for "LRU maps" - least recently used).</p>
<p>If you can't do this, you can try to chop down the number of regexps you have to try by checking a prefix or somesuch.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/266620#2666201Answer by Edward Kmett for Hashtable/dictionary/map lookup with regular expressionsEdward Kmett2008-11-05T20:52:08Z2008-11-06T14:28:01Z<p>What you want to do is very similar to what is supported by xrdb. They only support a fairly minimal notion of globbing however.</p>
<p>Internally you can implement a larger family of regular languages than theirs by storing your regular expressions as a character trie. </p>
<ul>
<li>single characters just become trie nodes. </li>
<li>.'s become wildcard insertions covering all children of the current trie node. </li>
<li>*'s become back links in the trie to node at the start of the previous item. </li>
<li>[a-z] ranges insert the same subsequent child nodes repeatedly under each of the characters in the range. With care, while inserts/updates may be somewhat expensive the search can be linear in the size of the string. With some placeholder stuff the common combinatorial explosion cases can be kept under control. </li>
<li>(foo)|(bar) nodes become multiple insertions</li>
</ul>
<p>This doesn't handle regexes that occur at arbitrary points in the string, but that can be modeled by wrapping your regex with .* on either side.</p>
<p>Perl has a couple of Text::Trie -like modules you can raid for ideas. (Heck I think I even wrote one of them way back when)</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/267747#2677470Answer by mccutchen for Hashtable/dictionary/map lookup with regular expressionsmccutchen2008-11-06T05:55:42Z2008-11-06T05:55:42Z<p>I created this exact data structure for a project once. I implemented it naively, as you suggested. I did make two immensely helpful optimizations, which may or may not be feasible for you, depending on the size of your data:</p>
<ul>
<li>Memoizing the hash lookups</li>
<li>Pre-seeding the the memoization table (not sure what to call this... warming up the cache?)</li>
</ul>
<p>To avoid the problem of multiple keys matching the input, I gave each regex key a priority and the highest priority was used.</p>
http://stackoverflow.com/questions/260056/hashtable-dictionary-map-lookup-with-regular-expressions/816047#8160471Answer by Florian Nigsch for Hashtable/dictionary/map lookup with regular expressionsFlorian Nigsch2009-05-03T01:18:14Z2009-05-03T01:18:14Z<p>Hey,</p>
<p>What about the following:</p>
<pre><code>class redict(dict):
def __init__(self, d):
dict.__init__(self, d)
def __getitem__(self, regex):
r = re.compile(regex)
mkeys = filter(r.match, self.keys())
for i in mkeys:
yield dict.__getitem__(self, i)
</code></pre>
<p>It's basically a subclass of the dict type in Python. With this you can supply a regular expression as a key, and the values of all keys that match this regex are returned in an iterable fashion using yield.</p>
<p>With this you can do the following:</p>
<pre><code>>>> keys = ["a", "b", "c", "ab", "ce", "de"]
>>> vals = range(0,len(keys))
>>> red = redict(zip(keys, vals))
>>> for i in red[r"^.e$"]:
... print i
...
5
4
>>>
</code></pre>