Tagged Questions
A hash table in programming is a collection that uses a hash function to map identifying values (keys) to their associated values.
214
votes
12answers
135k views
Differences between HashMap and Hashtable?
What is the difference between a HashMap and a Hashtable in Java?
Which is more efficient for non-threaded applications?
53
votes
4answers
35k views
.NET HashTable Vs Dictionary - Can the Dictionary be as fast?
I am trying to figure out when and why to use a Dictionary or a HashTable. I have done a bit of a search on here and have found people talking about the generic advantages of the Dictionary which I ...
33
votes
3answers
43k views
how to use Dictionary or Hashtable in Javascript? [closed]
Possible Duplicate:
Can anyone recommend a good Hashtable implementation in Javascript?
Hello everyone,
I want to calculate/store some statistics information using JavaScript, the equivalent ...
24
votes
2answers
3k views
Curious about the HashTable problem
I read that hash tables in Haskell had performance issues (on the Haskell-Cafe in 2006 and Flying Frog Consultancy's blog in 2009), and since I like Haskell it worried me.
That was a year ago, what is ...
23
votes
10answers
2k 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?
Basically if ...
22
votes
10answers
23k 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 + creating a symbol ...
21
votes
9answers
20k views
How to define hash tables in bash?
Just what title says. I am surprised by insufficiency of results in Google search for this question! What I want to is the equivalent of Python dictionaries but in bash (and hence, should work across ...
21
votes
4answers
13k views
Is a Python dictionary an example of a hash table?
One of the basic data structures in Python is the dictionary, which allows one to record "keys" for looking up "values" of any type. Is this implemented internally as a hash table? If not, what is ...
21
votes
12answers
5k views
How do you implement GetHashCode for structure with two string
I have a structure in C#:
public struct UserInfo
{
public string str1
{
get;
set;
}
public string str2
{
get;
set;
}
}
The only rule is that ...
20
votes
4answers
3k 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 anyone know of a ...
19
votes
10answers
3k views
Why can't you use null as a key for a Dictionary<bool?, string>?
Apparently, you cannot use a null for a key, even if your key is a nullable type.
This code:
var nullableBoolLabels = new System.Collections.Generic.Dictionary<bool?, string>
{
{ true, ...
19
votes
4answers
4k views
How Do I Choose Between a Hash Table and a Trie (Prefix Tree)?
So if I have to choose between a hash table or a prefix tree what are the discriminating factors that would lead me to choose one over the other. From my own naive point of view it seems as though ...
18
votes
4answers
31k views
Simple hashmap implementation in C++
I'm relatively new to C++. In Java, it's easy for me to instantiate and use a hashmap. I'd like to know how to do it in a simple way in C++, since I saw many different implementations and none of them ...
16
votes
5answers
2k views
Python: What's a correct and good way to implement __hash__()?
What's a correct and good way to implement __hash__()?
I am talking about the function that returns a hashcode that is then used to insert objects into hashtables aka dictionaries.
As __hash__() ...
16
votes
11answers
16k views
Associative arrays in Shell scripts
We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?
15
votes
1answer
4k views
Most concise way to initialize a C# hashtable
Does C# allow hashtables to be populated in one-line expressions? I am thinking of something equivalent to the below Python:
mydict = {"a": 23, "b": 45, "c": 67, "d": 89}
In other words, is there ...
15
votes
10answers
15k views
Hashtable in C++?
I usually use C++ STL map whenever I need to store some data associated with a specific type of value (a key value - e.g. a string or other object). The STL map implementation is based on trees which ...
14
votes
5answers
3k views
Hash tables in MATLAB
Does MATLAB have any support for hash tables?
Some background
I am working on a problem in Matlab that requires a scale-space representation of an image. To do this I create a 2-D Gaussian filter ...
14
votes
3answers
5k views
Tuples( or arrays ) as Dictionary keys in C#
I am trying to make a Dictionary lookup table in C#. I need to resolve a 3-tuple of values to one string. I tried using arrays as keys, but that did not work, and I don't know what else to do. At ...
14
votes
12answers
6k views
How does a hash table work?
I'm looking for an explanation of how a hashtable works - in plain English for a simpleton like me! For example I know it takes the key, calculates the hash (how?) and then performs some kind of ...
14
votes
4answers
4k views
How do I get the number of keys in a hash table in Lua?
myTable = {}
myTable["foo"] = 12
myTable["bar"] = "blah"
print(#myTable) -- this prints 0
Do I actually have to iterate through the items in the table to get the number of keys?
numItems = 0
for ...
14
votes
8answers
9k views
Have a good hash function for a C++ hash table?
I am in need of a performance-oriented hash function implementation in C++ for a hash table that I will be coding. I looked around already and only found questions asking what's a good hash function ...
14
votes
5answers
4k views
Can anyone recommend a good Hashtable implementation in Javascript?
I've found jCache and some other home-grown methods using associative arrays. If you've had experience with jCache, were there any limitations?
13
votes
4answers
266 views
Hash table optimized for full iteration + key replacement
I have a hash table where the vast majority of accesses at run-time follow one of the following patterns:
Iterate through all key/value pairs. (The speed of this operation is critical.)
Modify keys ...
13
votes
5answers
3k views
Super high performance C/C++ hash map (table, dictionary)
I need to map primitive keys (int, maybe long) to struct values in a high-performance hash map data structure.
My program will have a few hundred of these maps, and each map will generally have at ...
13
votes
4answers
10k views
How can I convert List<object> to Hashtable in C#?
I have a list of objects, each containing an Id, Code and Description.
I need to convert this list into a Hashtable, using Description as the key and Id as the value.
This is so the Hashtable can ...
12
votes
5answers
752 views
Persistent Hash Table Implementation
In a program I'm working on, I develop a large "thread tree" (at most k children per node), where each thread makes some modifications to a hash table inherited from its parent. Is there a way to ...
12
votes
5answers
1k views
Why are hash table expansions usually done by doubling the size?
I've done a little research on hash tables, and I keep running across the rule of thumb that when there are a certain number of entries (either max or via a load factor like 75%) the hash table should ...
12
votes
8answers
14k views
Algorithm for Determining Tic Tac Toe Game Over (Java)
I've written a game of tic-tac-toe in Java, and my current method of determining the end of the game accounts for the following possible scenarios for the game being over:
The board is full, and no ...
12
votes
7answers
2k views
How to store a hash table in a file?
How can I store a hash table with separate chaining in a file on disk?
Generating the data stored in the hash table at runtime is expensive, it would be faster to just load the HT from disk...if only ...
11
votes
6answers
966 views
Why does LinkedHashSet<E> extend HashSet<e> and implement Set<E>
Opened a LinkedHashSet source code today and found some interesting thing:
public class LinkedHashSet<E>
extends HashSet<E>
implements Set<E>, Cloneable, ...
11
votes
3answers
802 views
Hash tables in prolog
I was solving a puzzle in prolog the other day and realized that were I using another programming language, I would have made use of a hash table/dictionary, but as far as I know this isn't really ...
11
votes
6answers
2k views
Good way to hash a float vector?
I am well aware of all the problems involved in comparing floats. This is exactly the reason for this question.
I'm looking to create a fast hash table for values that are 3D vectors (3 floats - ...
10
votes
3answers
610 views
Google Interview Question [closed]
This was one of Google Interview questions.
What is the possible problem if Hash Table grows more than 30 gb
(ignore problems like bad hash function )
I didn't know it. What could be ...
10
votes
1answer
6k views
Get size of ActionScript 3 Dictionary
var d:Dictionary = new Dictionary();
d["a"] = "b";
d["b"] = "z";
How to get the length/size of the dictionary (which is 2) ?
10
votes
3answers
2k views
How to write a hash function in C?
Hash Tables are said to be the fastest/best way of Storing/Retrieving data.
My understanding of a hash table, hashing is as follows (Please correct me if I am wrong or Please add If there is anything ...
10
votes
6answers
3k views
A minimal hash function for C?
I can't use boost:hash because I have to stick with C and can't use C++.
But, I need to hash a large number (10K to 100k) of tokens strings (5 to 40 bytes length) so that search within those are ...
9
votes
6answers
287 views
Salting: Is it reasonable to use the user name?
I am debating using user-names as a means to salt passwords, instead of storing a random string along with the names. My justification is that the purpose of the salt is to prevent rainbow tables, so ...
9
votes
8answers
3k views
Cuckoo hashing in C
Does anybody have an implementation of Cuckoo hashing in C? If there was an Open Source, non GPL version it would be perfect!
Since Adam mentioned it in his comment, anyone knows why it is not much ...
9
votes
5answers
2k views
How many hash buckets
If I notice that a hash table (or any other data structure built on a hash table) is filling up, at what point should you build a new table with more buckets. And given n items in the table so far, ...
9
votes
11answers
1k views
Why are entries in addition order in a .Net Dictionary?
I just saw this behaviour and I'm a bit surprised by it...
If I add 3 or 4 elements to a Dictionary, and then do a "For Each" to get all the keys, they appear in the same order I added them.
The ...
8
votes
3answers
104 views
Difference between HashTable and Collections.synchronized(HashMap)
As far as I know, HashTable synchronizes each and every method in the Map interface, but the latter is like a wrapper class containing synchronized methods delegating calls to the actual ...
8
votes
3answers
155 views
Java Generics: Array containing generics [closed]
Possible Duplicate:
Java how to: Generic Array creation
Error generic array creation
I have been tasked with writing a Hash Table in Java, which must work with any data type. The rules ...
8
votes
3answers
748 views
.Net Hashtable - Contains vs ContainsKey
I just noticed the HashTable objects have a Contains and CotainsKey method, with same description. So are they just synonyms or is there som edifference behind the scenes
8
votes
5answers
8k views
Is ActionScript 3 Dictionary a hashmap?
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/
The dictionary does what I need but I do need to care about performance. Does anybody know if the Dictionary is implemented as a hashtable? ...
8
votes
4answers
4k views
Cocoa: Dictionary with enum keys?
I need to create a dictionary/hashmap where the
Keys are enums
Values are some subclass of NSObject
NSDictionary won't work here (enums don't conform to NSCopying).
I could perhaps use a ...
8
votes
8answers
2k views
How are hash tables implemented internally in popular languages?
Can someone please shed some light on how popular languages like Python, Ruby implements hash tables internally for symbol lookup? Do they use the classic "array with linked-list" method, or use a ...
8
votes
13answers
11k views
Hashtable with MultiDimensional Key in C#
I'm basically looking for a way to access a hashtable value using a two-dimensional typed key in c#.
Eventually I would be able to do something like this
HashTable[1][false] = 5;
int a = ...
8
votes
10answers
9k views
Is it possible to sort a HashTable?
I have a property that returns a HashTable. I would like to sort it without refactoring my property. Please note: I do not want to return another type.
Code:
/// <summary>
/// All ...
8
votes
4answers
10k views
HashTables in Cocoa
HashTables/HashMaps are one of the most (if not the most) useful of data-structures in existence. As such, one of the first things I investigated when starting to learn programming in Cocoa was how ...