Tagged Questions
A data structure that uses a hash function to map identifying values, known as 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?
139
votes
7answers
137k views
Java: iterate through HashMap [closed]
Possible Duplicate:
How do I iterate over each Entry in a Collection Map?
What is the best way to iterate through a HashMap?
45
votes
9answers
56k views
JavaScript Hashmap Equivalent
As made clear in update 3 on this answer, this notation:
var hash = {};
hash[X]
does not actually hash the object X; it actually just converts X to a string (via .toString() if it's an object, or ...
34
votes
12answers
62k views
Java Hashmap: How to get key from value?
If I have the value "foo", and a HashMap<String> ftw for which ftw.containsValue("foo") returns true, how can I get the corresponding key? Do I have to loop through the hashmap? What is the best ...
25
votes
3answers
34k views
C# Java HashMap equivalent
Coming from a Java world into a C# one is there a HashMap equivalent? If not what would you recommend?
24
votes
4answers
7k views
Does Java have a HashMap with reverse lookup?
I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but I will need O(1) lookup in both directions. Is there a name for this type of data ...
22
votes
5answers
55k views
How do I use a foreach loop in Java to loop through the values in a HashMap?
I am trying to compile the following code:
private String dataToString(){
Map data = (HashMap<MyClass.Key, String>) getData();
String toString = "";
for( MyClass.Key key: ...
21
votes
6answers
3k views
Is there a SoftHashMap in Java?
I know there is a WeakHashMap in java.util, but since it uses WeakReferences for everything, which is only referenced by this Map, referenced objects will get lost on the next GC cycle. So it's nearly ...
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 ...
20
votes
24answers
14k views
Java HashMap performance optimization / alternative
I want to create a large HashMap but the put() performance is not good enough. Any ideas?
Other data structure suggestions are welcome but I need the lookup feature of a Java Map:
map.get(key)
In ...
20
votes
11answers
33k views
Which data structure would you use: TreeMap or HashMap? (Java)
Description | A Java program to read a text file and print each of the unique words in alphabetical order together with the number of times the word occurs in the text.
The program should declare a ...
19
votes
13answers
11k views
Is a Java hashmap really O(1)?
I've seen some interesting claims on SO re Java hashmaps and their O(1) lookup time. Can someone explain why this is so? Unless these hashmaps are vastly different from any of the hashing algorithms I ...
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 ...
18
votes
8answers
5k views
Is it safe to get values from a java.util.HashMap from multiple threads (no modification)?
There is a case where a map will be constructed, and once it is initialized, it will never be modified again. It will however, be accessed (via get(key) only) from multiple threads. Is it safe to ...
17
votes
1answer
390 views
OpenJDK's rehashing mechanism
Found this code on http://www.docjar.com/html/api/java/util/HashMap.java.html after searching for a HashMap implementation.
264 static int hash(int h) {
265 // This function ...
17
votes
4answers
11k views
map vs. hash_map in C++
I have a question with hash_map and map in C++. I understand that map is in STL but hash_map is not a standard. What's the difference of them two?
Any insights are strongly welcomed.
Thanks!
16
votes
4answers
1k views
How is the implementation of LinkedHashMap different from HashMap?
If LinkedHashMap's time complexity is same as HashMap's complexity why do we need HashMap? What are all the extra overhead LinkedHashMap has when compared to HashMap in Java?
14
votes
4answers
12k views
Convert JSON to HashMap using Gson in Java
I'm requesting data from a server which returns data in the JSON format. Casting a HashMap into JSON when making the request wasn't hard at all but the other way seems to be a little tricky. The JSON ...
14
votes
5answers
6k views
Remove Elements from a HashSet while Iterating
So, if I try to remove elements from a Java HashSet while iterating, I get a ConcurrentModificationException. What is the best way to remove a subset of the elements from a HashSet as in the ...
14
votes
6answers
8k views
Using a byte array as HashMap key (Java)
See topic - do you see any problem with this? I could also do new String(byte[]) and hash by String but it is more straightforward to use byte[]
13
votes
11answers
3k views
In java, what is the difference between a HashSet and HashMap…?
Apart from the fact that hashSet does not allow duplicate values, what is the difference between a HashMap and Hashset...?
I mean implementaion wise.....? It's a little bit vague because both use ...
12
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 ...
11
votes
9answers
7k views
Are final static variables thread safe in Java?
I've read around quite a bit but haven't found a definitive answer.
I have a class that looks like this:
public class Foo() {
private static final HashMap<String, HashMap> ...
11
votes
5answers
3k views
Why does HashSet implementation in Sun Java use HashMap as its backing?
Looking at the source of Java 6, HashSet<E> is actually implemented using HashMap<E,Object>, using dummy object instance on every entry of the Set.
I think that wastes 4 byte (on 32-bit ...
11
votes
12answers
13k views
Memory overhead of Java HashMap compared to ArrayList
I am wondering what is the memory overhead of java HashMap compared to ArrayList?
Update:
I would like to improve the speed for searching for specific values of a big pack (6 Millions+) of identical ...
11
votes
8answers
19k views
Java - HashMap vs Map objects
What is the difference between the following maps I create (in another question, people answered using them seemingly interchangeably and I'm wondering if/how they are different):
HashMap<String, ...
11
votes
6answers
4k views
Performance of HashMap with different initial capacity and load factor
Here is my situation. I am using two java.util.HashMap to store some frequently used data in a Java web app running on Tomcat. I know the exact number of entries into each Hashmap. The keys will be ...
11
votes
1answer
863 views
Efficient hashCode() implementation
I often auto-generate an class's hashCode() method using IntelliJ IDEA and typically the method takes the form:
result = 31 * result + ...
My question is what is the purpose of multiplying by 31? ...
10
votes
1answer
3k views
Check if a specific key is present in a hash or not?
I am working on rails and I want to check whether user key is present or not in session hash.
How can I check this?
PS: I don't want to check whether this value is nil or not. I want to check weather ...
10
votes
13answers
2k views
HashMap in Java, 100 Million entries
I want to store 100 Million terms and their frequencies (in a text database ) into a HashMap <String, Double>. It is giving me "Out of Memory" Error. I tried to increase the heap-space to ...
10
votes
9answers
5k views
is the Java HashMap keySet() iteration order consistent?
I understand that the Set returned from a Map's keySet() method does not guarantee any particular order.
My question is, does it guarantee the same order over multiple iterations. For example
...
9
votes
3answers
173 views
Returning a list of wildcard matches from a HashMap in java
I have a Hashmap which may contain wildcards (*) in the String.
For instance,
HashMap<String, Student> students_;
can have John* as one key. I want to know if JohnSmith matches any ...
9
votes
6answers
231 views
Is there a clean way to avoid calling a method on nil in a nested params hash?
I'm interested in getting the nested 'name' parameter of a params hash. Calling something like
params[:subject][:name]
throws an error when params[:subject] is empty. To avoid this error I usually ...
9
votes
4answers
8k views
How to create a simple map using JavaScript/JQuery
How can you create the JavaScript/JQuery equivalent of this Java code:
Map map = new HashMap(); //Doesn't not have to be a hash map, any key/value map is fine
map.put(myKey1, myObj1);
map.put(myKey2, ...
9
votes
1answer
2k views
Difference between hash_map and unordered_map?
I recently discovered that the implementation of the hash map in c++ will be called unordered_map. When I looked up why they weren't just using hash_map, I discovered that apparently there are ...
9
votes
6answers
28k views
Java: how to convert HashMap<String, Object> to array
I need to convert a HashMap<String, Object> to an array; could anyone show me how it's done?
9
votes
5answers
15k views
ConcurrentModificationException and a HashMap
I am persisting objects using JPA. The Main object has an owning One-Many relationship with another object. The other object is stored in a HashMap. What sort of synchronization would fix this ...
9
votes
8answers
7k views
HashMap intialization parameters (load / initialcapacity)
What values should I pass to create an efficient HashMap / HashMap based structures for N items?
In an ArrayList, the efficient number is N (N already assumes future grow). What should be the ...
8
votes
3answers
103 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
232 views
What is the optimal capacity and load factor for a fixed-size HashMap?
I'm trying to figure out the optimal capacity and load factor for a specific case. I think I got the gist of it, but I'd still be thankful for a confirmation from someone more knowledgable than me. :)
...
8
votes
6answers
510 views
Java : Iteration through a HashMap, which is more efficient?
Given the following code, with two alternative ways to iterate through it,
is there any performance difference between these two methods?
Map<String, Integer> map = new ...
8
votes
6answers
516 views
Why ArrayList grows at a rate of 1.5, but for Hashmap it's 2?
As per Sun Java Implementation, during expansion, ArrayList grows to 3/2 it's initial capacity whereas for HashMap the expansion rate is double. What is reason behind this?
As per the implementation, ...
8
votes
5answers
698 views
Theoretical limit for number of keys (objects) that can be stored in a HashMap?
Is there a theoretical limit for the number of key entries that can be stored in a HashMap or does it purely depend on the heap memory available?
Also, which data structure is the best to store a ...
8
votes
4answers
1k views
Accessing the last entry in a Map
How to move a particular HashMap entry to Last position?
For Example, I have HashMap values like this:
HashMap<String,Integer> map = new HashMap<String,Integer>();
map= {Not-Specified ...
8
votes
5answers
1k views
Difference between two maps
I need to very efficiently compare two maps in Clojure/Java, and return the difference as determined by Java's .equals(..), with nil/null equivalent to "not present".
i.e. I am looking for the most ...
8
votes
6answers
2k views
Shortcut for adding to List in a HashMap
I often have a need to take a list of objects and group them into a Map based on a value contained in the object. Eg. take a list of Users and group by Country.
My code for this usually looks like:
...
8
votes
4answers
1k views
Is a HashMap thread-safe for different keys?
If I have two multiple threads accessing a HashMap, but guarantee that they'll never be accessing the same key at the same time, could that still lead to a race condition?
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
737 views
is there a Java equivalent of Python's defaultdict?
In Python, the defaultdict class provides a convenient way to create a mapping from key -> [list of values], in the following example,
from collections import defaultdict
d = defaultdict(list)
...
8
votes
7answers
19k views
Correct way to initialize HashMap and can HashMap hold different value types?
So I have two questions about HashMaps in Java:
What is the correct way to initialize a HashMap? I think it might be best in my situation to use:
HashMap x = new HashMap();
But Eclipse keeps ...