Tagged Questions

2
votes
9answers
603 views

Looking for a good hash table implementation in C

I am primarily interested in string keys. Can someone point me towards a library? -A
2
votes
5answers
452 views

Ternary Tree Vs Hash Table

I need to know if a ternary tree is better than a hash table. I came across this question in a reply to another question I had where someone said that ternary trees are often fast …
11
votes
10answers
3k views

Binary Trees vs. Linked Lists vs. Hash Tables

I'm building a symbol table for a project I'm working on. I was wondering what peoples opinions are on the advantages and disadvantages of the various methods available for storing …
2
votes
6answers
377 views

Chosing a suitable table size for a Hash.

If I have a key set of 1000, what is a suitable size for my Hash table, and how is that determined?
13
votes
10answers
950 views

The fundamentals of Hash tables?

I'm quite confused about the basic concepts of a Hash table. If I were to code a hash how would I even begin? What is the difference between a Hash table and just a normal array? …
11
votes
12answers
2k views

How do you implement GetHashCode for this structure?

I have a structure in C#: public struct UserInfo { public string str1 { get; set; } public string str2 { get; set; } } The only rule is …
8
votes
3answers
888 views

Literal hashes in c#?

I've been doing c# for a long time, and have never come across an easy way to just new up a hash. I've recently become acquainted with the ruby syntax of hashes and wonder, does a …
12
votes
9answers
9k views

Java hashmap vs hashtable

What is the difference between a hashmap and a hashtable in Java, and which is more efficient for non-threaded applications?
1
vote
5answers
1k views

Print out the keys and Data of a Hashtable in C# .NET 1.1

I need debug some old code that uses a Hashtable to store response from various threads. I need a way to go through the entire Hashtable and print out both keys and the data in th …