Fast string comparison with list - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T15:09:48Z http://stackoverflow.com/feeds/question/1153148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list 3 Fast string comparison with list Matt Howells http://stackoverflow.com/users/16881 2009-07-20T12:02:15Z 2009-07-20T15:49:52Z <p>I need a fast method to determine if a given string is in a list of strings.</p> <p>The list of strings is not known until runtime but thereafter it will not change.</p> <p>I could simply have a <code>List&lt;String&gt;</code> called <code>strings</code> and then do:</p> <pre><code>if (strings.Contains(item)) </code></pre> <p>However this will perform poorly if there are many strings in the list.</p> <p>I could also use a <code>HashSet&lt;String&gt;</code>, but this would necessitate calling <code>GetHashCode</code> on every incoming string as well as <code>Equals</code>, which would be a waste if there are e.g. only 3 strings in the list. Did I mention this needs to be <b>fast</b>?</p> <p>I could when setting up, decide to use a <code>List</code> or a <code>HashSet</code> depending on the number of strings (e.g. use List for less than 10 strings, HashSet otherwise), rather like the logic in <code>HybridDictionary</code>.</p> <p>As the strings are unicode, a standard Trie structure will not work, although a Radix tree/Patricia trie might. Are there any good C# implementations out there with benchmarks?</p> <p>Some have mentioned bypassing <code>String</code>'s <code>GetHashCode</code> and using a faster performing hash function. Are there any benchmarks out there?</p> <p>Using LINQ expressions to essentially create an optimised switch statement is a novel approach which looks very interesting.</p> <p>What else would work? Setup cost is not important, just the search speed.</p> <p>If it matters, the incoming string values will rarely appear in the list.</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153166#1153166 5 Answer by Vinay Sajip for Fast string comparison with list Vinay Sajip http://stackoverflow.com/users/118903 2009-07-20T12:05:38Z 2009-07-20T14:55:24Z <p>You could use a <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">trie</a> to hold the list of strings; tries were designed for fast re*trie*val. Here's <a href="http://www.kerrywong.com/2006/04/01/implementing-a-trie-in-c/" rel="nofollow">one example</a> of implementing a trie in C#.</p> <p><strong>Update</strong>: <a href="http://icu-project.org/docs/papers/foldedtrie%5Fiuc21.ppt" rel="nofollow">Powerpoint presentation on folded tries for Unicode</a> and <a href="http://icu-project.org/repos/icu/icuhtml/trunk/design/properties/utrie2.html" rel="nofollow">Ifo on implementation of a folded trie for Unicode (not C#)</a></p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153175#1153175 2 Answer by Dan Diplo for Fast string comparison with list Dan Diplo http://stackoverflow.com/users/140392 2009-07-20T12:07:00Z 2009-07-20T12:07:00Z <p>Have you considered using the <a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">HashSet</a> class (in .NET 3) instead?</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153193#1153193 3 Answer by Jonathan for Fast string comparison with list Jonathan http://stackoverflow.com/users/12502 2009-07-20T12:10:05Z 2009-07-20T12:10:05Z <p>Check out these:</p> <p><a href="http://blogs.msdn.com/jomo%5Ffisher/archive/2007/03/28/fast-switching-with-linq.aspx" rel="nofollow">Jomo Fisher - Fast Switching with LINQ</a></p> <p><a href="http://blog.codebeside.org/archive/2008/08/28/staticstringdictionary-fast-switching-with-linq-revisited.aspx" rel="nofollow">Gustavo Guerra - StaticStringDictionary - Fast Switching with LINQ revisited</a></p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153327#1153327 1 Answer by Marc Gravell for Fast string comparison with list Marc Gravell http://stackoverflow.com/users/23354 2009-07-20T12:33:11Z 2009-07-20T12:33:11Z <p>Re your "when the list is small" concern; if you don't mind using non-generic collections, <code>System.Collections.Specialized.HybridDictionary</code> does something like this; it encapsulates a <code>System.Collections.Specialized.ListDictionary</code> when small, or a <code>System.Collections.Hashtable</code> when it gets bigger (<code>&gt;10</code>). Worth a look?</p> <p><hr /></p> <p>Otherwise; you could perhaps use <code>HashSet&lt;T&gt;</code> with a custom comparer? Then you can choose how expensive <code>GetHashCode()</code> is...</p> <pre><code>using System; using System.Collections.Generic; class CustomStringComparer : IEqualityComparer&lt;string&gt; { public bool Equals(string x, string y) { return string.Equals(x, y); } public int GetHashCode(string s) { return string.IsNullOrEmpty(s) ? 0 : s.Length + 273133 * (int)s[0]; } private CustomStringComparer() { } public static readonly CustomStringComparer Default = new CustomStringComparer(); } static class Program { static void Main() { HashSet&lt;string&gt; set = new HashSet&lt;string&gt;( new string[] { "abc", "def", "ghi" }, CustomStringComparer.Default); Console.WriteLine(set.Contains("abc")); Console.WriteLine(set.Contains("abcde")); } } </code></pre> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153347#1153347 1 Answer by Pat for Fast string comparison with list Pat http://stackoverflow.com/users/36 2009-07-20T12:36:45Z 2009-07-20T12:36:45Z <p>Perhaps the <a href="http://msdn.microsoft.com/en-us/library/system.collections.specialized.hybriddictionary.aspx" rel="nofollow">HybridDictionary</a> is a better option here. Its internal use is dependent on how many items are in the collection.</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153415#1153415 0 Answer by CoderTao for Fast string comparison with list CoderTao http://stackoverflow.com/users/122228 2009-07-20T12:58:20Z 2009-07-20T14:54:04Z <p>As an aside, if memory serves, when a String is constructed, its HashValue is precomputed and stored with the String as an optimization for this type of use case. If you're using a character array or StringBuilder, this obviously doesn't apply, but for an immutable String it should.</p> <p>EDIT: I am incorrect... Java does cache a String's HashCode, C# does not.</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153502#1153502 1 Answer by hectorsosajr for Fast string comparison with list hectorsosajr http://stackoverflow.com/users/12829 2009-07-20T13:15:05Z 2009-07-20T13:15:05Z <p>I ended up doing this:</p> <pre><code>private static bool Contains(List&lt;string&gt; list, string value) { bool contains = null != list.Find(str =&gt; str.ToLower().Equals(value.ToLower())); return contains; } </code></pre> <p>I'm guessing you could create an extension method for <code>List&lt;string&gt;</code>, but this was sufficient for my needs.</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1154353#1154353 0 Answer by configurator for Fast string comparison with list configurator http://stackoverflow.com/users/9536 2009-07-20T15:49:52Z 2009-07-20T15:49:52Z <p>You could use string interning to do this very quickly. When building the list, you have to store your required string's interned format (the result of <a href="http://msdn.microsoft.com/en-us/library/system.string.intern.aspx" rel="nofollow"><code>string.Intern()</code></a>). Then, you need to compare against an interned string with <a href="http://msdn.microsoft.com/en-us/library/system.object.referenceequals.aspx" rel="nofollow"><code>object.ReferenceEquals</code></a> - since interned strings have the same reference.</p> <pre><code>List&lt;string&gt; BuildList() { List&lt;string&gt; result; foreach (string str from StringSource()) result.Add(str.Intern()); return result; } bool CheckList(List&lt;string&gt; list, string stringToFind) { // list must be interned for this to work! return list.Find(str =&gt; object.ReferenceEquals(str, stringToFind)) != null; } </code></pre> <p>This will result in a four-byte comparison for each list, and one pass over the original string. The intern pool of strings is built specifically for quick string comparison and finding if one already exists, so the intern operation should be quite fast.</p>