Top "Hashtable" questions

A hash table in programming is a collection that uses a hash function to map identifying values (keys) to their associated values.

What is a hash table and how do you make it in C?

I have a few questions on a data-structure called a hash table (also know as associative array) and how it …

c data-structures struct hashtable
How to get JavaScript hash table count?

Possible Duplicate: Length of Javascript Associative Array hash_table = {a: 131, b: 222, c:313} The length method is not working of course …

javascript hashtable
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 …

java hashtable
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, …

c hashtable hash hash-function
HashTables in Cocoa

HashTables/HashMaps are one of the most (if not the most) useful of data-structures in existence. As such, one of …

objective-c cocoa macos hashtable
Why hashmap lookup is O(1) i.e. constant time?

If we look from Java perspective then we can say that hashmap lookup takes constant time. But what about internal …

data-structures hash hashmap hashtable big-o
What are hashtables and hashmaps and their typical use cases?

I have recently run across these terms few times but I am quite confused how they work and when they …

language-agnostic hashtable hashmap
Hashtables and key order

Is there a way to keep the order of keys in a hashtable as they were added? Like a push/…

powershell sorting hashtable powershell-2.0
Best way to remove an entry from a hash table

What is the best way to remove an entry from a hashtable that uses linear probing? One way to do …

data-structures hashtable