8
votes
23answers
454 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: …
-1
votes
2answers
36 views
i want to create a hashmap from a hashmap with innermap and outermap relationship?
public interface InnerMap<V> extends Map<String, V> {
Map<String, V> getInnerMap(String prefix);
}
For example:
baseMap.put("aabb", "one");
baseMap.put("aa …
0
votes
4answers
114 views
Is HashMap in Java collision safe
Hi
I am developing a parser that needs to put key value pairs in hashmap.
But a key can have multiple values which i can do in this way
HashMap<String,ArrayList<String> …
1
vote
5answers
108 views
C++ STL unordered_map problems and doubts
Hello,
after some years in Java and C# now I'm back to C++. Of course my programming style is influenced by those languages and I tend to feel the need of a special component that …
1
vote
0answers
14 views
Graph Adjacency List How to implement O(1) lookup for nodes/vertexes. Array?
I read in the specifications for graphs implemented with Adjacency List that adding edges is done in constant time. BUT that would require a node lookup with O(1). I would like bes …
0
votes
1answer
78 views
Java + List to HashMap
Hi Have a List of array, like
[[{x509Cert=x509cert.pem, accountNumber=652827, serviceProviderName=Sun, privateKey=pk, userName=0BS0Y72NBN, passWord=VuXYG4hZPS}], [{x509Cert=x509ce …
5
votes
4answers
172 views
Java key - key map
Hi,
I need a kind of map which is accessible in two directions, so with a key-key structure instead of key-value. Does this exist in Java? If not, what is the best way to create i …
8
votes
3answers
204 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 thi …
0
votes
2answers
70 views
ConcurrentHashMap and putAll() method
Normally (ie. not concurrently), putAll() cannot be more efficient than using lot's of calls to put(), even assuming that you exclude the cost of building the other Map that you pa …
1
vote
11answers
197 views
Java optimization, gain from hashMap?
I've been give some lovely Java code that has a lot of things like this (in a loop that executes about 1.5 million times).
code = getCode();
for (int intCount = 1; intCount < v …
0
votes
0answers
15 views
increase hashmap index without looping
I have working on clustering algorithm. I decided to use hashmap to store the points because thinking that i can use as clusterID and as the point. I do a dfs fashion search to i …
3
votes
3answers
143 views
java hashmap duplicates
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 k …
3
votes
1answer
112 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 apparent …
1
vote
5answers
144 views
Get a HashSet out of the keys of a HashMap?
Hi,
I have a pretty big (100'000s of entries) HashMap. Now, I need a HashSet containing all the keys from this HashMap. Unfortunately, HashMap only has a keySet() method which ret …
0
votes
2answers
123 views
ClassCastException When Casting HashMap Iterator to a Concrete Type
I am very new to processing.org and Java. I am trying to store objects in a HashMap, and then iterate over the values of the HashMap, calling methods on the stored objects.
In orde …
