A data structure that uses a hash function to map identifying values, known as keys, to their associated values

learn more… | top users | synonyms (2)

694
votes
21answers
357k 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?
499
votes
7answers
513k views

Java: iterate through HashMap [duplicate]

Possible Duplicate: How do I iterate over each Entry in a Collection Map? What is the best way to iterate through a HashMap?
79
votes
15answers
157k 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 ...
78
votes
1answer
26k 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 ...
76
votes
10answers
113k 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 ...
53
votes
8answers
56k 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, ...
53
votes
3answers
72k 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?
45
votes
2answers
9k views

Is gcc std::unordered_map implementation slow? If so - why?

We are developing a highly performance critical software in C++. There we need a concurrent hash map and implemented one. So we wrote a benchmark to figure out, how much slower our concurrent hash map ...
43
votes
5answers
52k views

What happens when a duplicate key is put into a HashMap?

I was wondering what happens to the earlier values in the case of duplicate/overwritten keys. Didn't find any documentation regarding the same. Case 1: We overwrite values for a key. Case 2: ...
41
votes
25answers
32k 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 ...
39
votes
4answers
17k 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 ...
39
votes
4answers
45k 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?
39
votes
12answers
56k 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 ...
37
votes
4answers
23k 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 ...
37
votes
5answers
47k 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, ...
37
votes
9answers
11k 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 ...
36
votes
10answers
87k views

java.lang.OutOfMemoryError: GC overhead limit exceeded

I am getting this error in a program that creates several (hundreds of thousands) HashMap objects with a few (15-20) text entries each. These Strings have all to be collected (without breaking up into ...
35
votes
2answers
41k views

How to loop through a HashMap in JSP?

How can I loop through a HashMap in JSP? <% HashMap<String, String> countries = MainUtils.getCountries(l); %> <select name="country"> <% // Here I need to loop ...
33
votes
5answers
86k 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: ...
31
votes
12answers
22k 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 ...
31
votes
5answers
18k 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 ...
30
votes
3answers
10k views

Why there is no ConcurrentHashSet against ConcurrentHashMap

HashSet is based on HashMap. If we look at HashSet<E> implementation, everything is been managed under HashMap<E,Object>. <E> is used as a key of HashMap. And we know that HashMap ...
28
votes
6answers
6k 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 ...
27
votes
6answers
34k views

How to update a value, given a key in a java hashmap?

Let me ask you something. Let's say we have a hashmap in java which keys are string objects and their corresponding values are integers. Now if i want to update (increment) the integer-value of the ...
26
votes
7answers
17k 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[]
26
votes
8answers
35k 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 ...
25
votes
7answers
62k 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?
25
votes
5answers
51k 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 ...
24
votes
7answers
13k 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 ...
21
votes
7answers
51k 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 ...
20
votes
13answers
14k views

Which is faster, Hash lookup or Binary search?

When given a static set of objects (static in the sense that once loaded it seldom if ever changes) into which repeated concurrent lookups are needed with optimal performance, which is better, a ...
20
votes
10answers
53k views

How to sort hash map

How we will be able to sort a hashmap<key,arraylist>? I want to sort on the basis of a value in array list.
20
votes
6answers
4k 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?
19
votes
7answers
16k views

How does Java order items in a HashMap or a HashTable?

I was wondering how Java orders items in the Map (HashMap or Hashtable) when they are added. Are the keys ordered by the hashcode, memory reference or by allocation precedence...? It's because I've ...
19
votes
5answers
20k views

How does Java hashmap work?

As per my understanding I think: Its perfectly legal for two objects to have same hashcode. If two objects are equal (using equals ) then they have same hashcode. If two object are not equal then ...
19
votes
1answer
6k 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 ...
18
votes
4answers
5k views

Clojure: working with a java.util.HashMap in an idomatic Clojure fashion

I have a java.util.HashMap object m (a return value from a call to Java code) and I'd like to get a new map with an additional key-value pair. If m were a Clojure map, I could use: (assoc m "key" ...
18
votes
6answers
6k 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 ...
17
votes
7answers
9k views

Best way to create an empty map in java

I need to create an empty map. if (fileParameters == null) fileParameters = (HashMap<String, String>) Collections.EMPTY_MAP; The problem is that the above code produces this warning: ...
17
votes
6answers
909 views

Is it possible to map string to int faster than using hashmap?

I understand that I should not optimize every single spot of my program so please consider this question to be "academic" I have maximum 100 strings and integer number for each of them, something ...
17
votes
9answers
13k 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 ...
17
votes
1answer
495 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
5answers
10k 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 ...
17
votes
1answer
334 views

Hash-consing in F# and weak hash tables in .net

Hash-consing consists in keeping in memory only one copy of a given object ; that is, if two objects are semantically equal (same content) then they should be physically equal (same location in ...
16
votes
4answers
32k 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 ...
16
votes
14answers
16k views

What is the difference between HashSet and HashMap…?

Apart from the fact that HashSet does not allow duplicate values, what is the difference between HashMap and Hashset...? I mean implementation wise.....? It's a little bit vague because both use hash ...
16
votes
4answers
5k 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?
16
votes
1answer
3k views

How to understand Locality Sensitive Hashing?

I noticed that LSH seems a good way to find similar items with high-dimension properties. After reading the paper http://www.slaney.org/malcolm/yahoo/Slaney2008-LSHTutorial.pdf, I'm still confused ...
16
votes
6answers
8k 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 ...
16
votes
2answers
468 views

Guava ImmutableMap noticably slower access than HashMap

While working on a memory benchmark of some high-throughput data structures, I realized I could use an ImmutableMap with only a little refactoring. Thinking this would be an improvement, I threw it ...

1 2 3 4 5 56