Fast string comparison with list - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T15:09:48Zhttp://stackoverflow.com/feeds/question/1153148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1153148/fast-string-comparison-with-list3Fast string comparison with listMatt Howellshttp://stackoverflow.com/users/168812009-07-20T12:02:15Z2009-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<String></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<String></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#11531665Answer by Vinay Sajip for Fast string comparison with listVinay Sajiphttp://stackoverflow.com/users/1189032009-07-20T12:05:38Z2009-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#11531752Answer by Dan Diplo for Fast string comparison with listDan Diplohttp://stackoverflow.com/users/1403922009-07-20T12:07:00Z2009-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#11531933Answer by Jonathan for Fast string comparison with listJonathanhttp://stackoverflow.com/users/125022009-07-20T12:10:05Z2009-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#11533271Answer by Marc Gravell for Fast string comparison with listMarc Gravellhttp://stackoverflow.com/users/233542009-07-20T12:33:11Z2009-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>>10</code>). Worth a look?</p>
<p><hr /></p>
<p>Otherwise; you could perhaps use <code>HashSet<T></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<string> {
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<string> set = new HashSet<string>(
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#11533471Answer by Pat for Fast string comparison with listPathttp://stackoverflow.com/users/362009-07-20T12:36:45Z2009-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#11534150Answer by CoderTao for Fast string comparison with listCoderTaohttp://stackoverflow.com/users/1222282009-07-20T12:58:20Z2009-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#11535021Answer by hectorsosajr for Fast string comparison with listhectorsosajrhttp://stackoverflow.com/users/128292009-07-20T13:15:05Z2009-07-20T13:15:05Z<p>I ended up doing this:</p>
<pre><code>private static bool Contains(List<string> list, string value)
{
bool contains = null != list.Find(str => str.ToLower().Equals(value.ToLower()));
return contains;
}
</code></pre>
<p>I'm guessing you could create an extension method for <code>List<string></code>, but this was sufficient for my needs.</p>
http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1154353#11543530Answer by configurator for Fast string comparison with listconfiguratorhttp://stackoverflow.com/users/95362009-07-20T15:49:52Z2009-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<string> BuildList() {
List<string> result;
foreach (string str from StringSource())
result.Add(str.Intern());
return result;
}
bool CheckList(List<string> list, string stringToFind) { // list must be interned for this to work!
return list.Find(str => 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>