|
-
April 20th, 2008, 03:13 PM
#1
class Dictionary
Hi, I'm programming in C #, and I have a question about the class dictionary, I know that this work as a hash table, but I would like to know how that hash function uses (or which is the one that could use), and that size is its table, here is an example of Dictionary, and here is my question.
Code:
private static Dictionary<string, double> PrepareFrequency(string[] words)
{
Dictionary<string, double> table = new Dictionary<string, double>();
foreach (string word in words)
{
if (table.ContainsKey(word))
table[word]++;
else
table.Add(word, 1);
}
return table;
}
Thanks for your attention.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|