2
votes
5answers
159 views

two unequal objects with same hashcode

Hashcode() and equals() concept is 1) If two Objects are equal according to equal(), then calling the hashcode method on each of those two objects should produce same hashcode. and other one is ...
1
vote
3answers
55 views

hashCode(), equals(Object) and compareTo(Class)

I've following the following Vertex class and it implements equals, hashCode and compareTo method. Even then my HashMap returns null. I don't know why? public class Vertex implements ...
0
votes
1answer
46 views

How is data retrieved from a HashTable in collision?

According to this, time complexity of search in a hashtable is O(1). However if there is a collision, then obviously this should be O(1) + something. My question is: When you say get(someKey) ...
10
votes
4answers
220 views

Java: A “prime” number or a “power of two” as HashMap size?

Many books and tutorials say that the size of a hash table must be a prime to evenly distribute the keys in all the buckets. But Java's HashMap always uses a size that is a power of two. Shouldn't it ...
3
votes
1answer
68 views

How does java manage hashmap size allocations that would cause it to perform poorly?

For example if I allocate a Hashmap of size 100, and if 100 buckets get created then wouldn't the Hashmap perform poorly? (As performing modular hashing will not distribute the keys evenly in all of ...
1
vote
1answer
89 views

Probing hash tables

I am implementing a hash table for a project, using 3 different kinds of probing. Right now I'm working on linear. For linear probing, I understand how the probing works, and my instructor implied he ...
3
votes
1answer
182 views

Custom hashcode/equals operation for HashMap

Is there a an implementation of the HashMap class (or Map interface) that will allow me to use alternate hashcode and equals operations... Similar to how collections of the same type can be sorted in ...
0
votes
1answer
354 views

HashMaps and Null values?

How do you pass in null values into a HashMap? The following code snippet works with options filled in: try{ Sample sample = new Sample(); HashMap<String, String> options = new ...
1
vote
4answers
88 views

Is Class<T> immutable in Java, also known as, is Class<T> a safe key for HashMap?

I have been lurking the net for a while now, but haven't found an answer to this yet. Someone is mentioning Class<T> as key here on SO (I think) but I can't find the post anymore. In any case, ...
-3
votes
1answer
98 views

Java HashMap not working [closed]

I think I did every thing but HashMap.get returns null. hashCode returns same integer, equals returns true, key is immutable, but still now working. What am I missing? Here is my code: public enum ...
2
votes
6answers
980 views

How to create a HashMap with two keys (Key-Pair, Value)?

I have a 2D array of Integers. I want them to be put into a HashMap. But I want to access the elements from the HashMap based on Array Index. Something like: For A[2][5], map.get(2,5) which returns a ...
0
votes
0answers
43 views

Mmutable objects in hash collections in Java? [duplicate]

Possible Duplicate: Are mutable hashmap keys a dangerous practice? What happens if muttable objects in hashtable are modified without using any of the hashmap APIs Does the object in ...
1
vote
2answers
739 views

Collision resolution in HashMap

When we put key-value pair in HashMap this could happen the hashcode of two keys could be same then how in this condition storing and retrieval of key-value will be handled. Update What I understand ...
2
votes
3answers
153 views

How hashcodes for enums are calculated in Java, and combining enum hashCodes for a HashMap's key

I have a class that contains different enums (different types). This class is used as key for a HashMap. The classes hashCode currently is implemented like this: public static class Key implements ...
0
votes
1answer
231 views

Regarding the example in Oracle's java online tutorial that uses HashMap to store anagram

I was reading the example in Oracle's online java tutorial that uses HashMap to store anagrams: // Read words from file and put into a simulated multimap Map<String, List<String>> ...
0
votes
1answer
53 views

Is it possible a hash code of mobile number is converted in to real number i want to know mobile number from my mobile number hash code

Is it possible a hash code of mobile number is converted in to real number i want to know mobile number from given mobile number hash code?Just as a testing purpose
5
votes
4answers
189 views

What happens to the lookup in a Hashmap or Hashset when the objects Hashcode changes

In a Hashmap the hash code of the key provided is used to place the value in the hashtable. In a Hashset the obects hashcode is used to place the value in the underlying hashtable. i.e the advantage ...
2
votes
4answers
267 views

Using HashMap to count instances

I have the following code to count the instances of different strings in an array; String words[] = {"the","cat","in","the","hat"}; HashMap<String,Integer> wordCounts = new ...
1
vote
1answer
78 views

Anyone know if Oracle/Sun publish the (junit) test classes they use for their java library classes?

The reason I want to know is, after searching all over the shop for an implementation of LinkedHashMap/LinkedHashSet that allows you to specify your own equals/hashcode function, I couldn't find one. ...
2
votes
2answers
246 views

How to meaningfully define hashCode and equals for a java.lang.Class<T>?

If one needs to use a Class<T> as part of a key of a Map what is the proper way to define the hashCode and equals? A Class<T> inherits the ones from Object which check for reference ...
1
vote
3answers
84 views

Accuracy of a Set with a HashMap backing's contains() method?

Hi I'm using a Set backed by a HashMap to keep track of what edges I have already traversed in a graph. I was planning on keying the set by the result of adding the hashcodes of the data stored in ...
3
votes
1answer
399 views

What is alternative hashing for String keys in java 8?

java 8 is providing alternative hashing for String keys to improve performance when a large number of key hash code collisions are encountered. Can anybody explain what is that and how it will work?
1
vote
4answers
222 views

Does default hashcode change on object mutation

I know that the hashmap keys should be immutable objects or at least have a consistent hashcode to properly retrieve its value from the Map/Set. But if I use a mutating object as key without ...
-2
votes
2answers
2k views

Internals of how the HashMap put() and get() methods work (basic logic only )

When we put a key instance say "key" and a Value instance say "value" in a HashMap class using put() method , what does the HashMap class do internally . How does it retrieve the value back when we ...
0
votes
1answer
239 views

Java: Modify id that changes hashcode

I use HashSet and I need to modify the ID of an object, but it changes hashcode and breaks HashSet and rules of hashCode() method. What is best solution: to delete object from Set and add object ...
0
votes
2answers
88 views

Different hashcode but HashMap not working

I have a class myDemoClass to store name and a class to put in a HashMap. While experimenting with overriding hashCode() method, the HashMap is returning null even if hashcodes are different. Why? I ...
10
votes
2answers
1k views

What happens if two different objects have the same hashcode?

It is my understanding that two unequal objects can have the same hashcode. How would this be handled when adding or retrieving from a HashMap java?
0
votes
5answers
139 views

Storing Multiple classes in a HashMap

I have several classes in common that all implement the same interface that I would like to manage via a single HashMap. But the classes don't use the same equals() and hashcode() implementations ...
0
votes
2answers
302 views

What hash function is better?

I write my implementation of HashMap in Java. I use open addressing for collision resolution. For better key distribution I want use a nice hash function for int hashcode of key. I dont know what hash ...
0
votes
4answers
164 views

how to order random values by hashcode in hashmap

I have a simple class that fills in a simple hashmap I want to order values by hashcode how to do that? import java.util.HashMap; import java.util.Map; import java.util.Random; public class ...
1
vote
5answers
473 views

HashMap with ArrayList key can not find it when Arraylist grows

Well my problem is that in some part of my code I use an arraylist as a key in a hashmap for example ArrayList<Integer> array = new ArrayList<Integer>(); And then I put my array like a ...
7
votes
5answers
1k views

Are mutable hashmap keys a dangerous practice?

Is it bad practice to use mutable objects as Hashmap keys? What happens when you try to retrieve a value from a Hashmap using a key that has been modified enough to change its hashcode? For example, ...
1
vote
2answers
437 views

Map<Pattern, Object> fails to find key

I have the following code: List<Pattern> patterns = Lists.newArrayList(Pattern.compile("blah"), Pattern.compile("blah2")); Map<Pattern, String> map = new HashMap<Patter, String>(); ...
5
votes
5answers
3k views

Updating Java HashMap key

I was just wondering, what would happen if key of a HashMap is mutable, test program below demonstrate that and I am unable to understand when both equals and hashCode methods returns true and same ...
19
votes
5answers
22k 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 ...
2
votes
5answers
1k views

Key not found in a HashMap for a composite object

So, I made my own composite key in Java with 3 members public class MyOwnKey{ int location; int length; String [] tokens; } Now I create two objects using the constructor String [] tokens = ...
4
votes
1answer
946 views

Why are hash maps better than trie maps?

By trie map I mean an associative array, where the payloads are stored in a trie instead of a hash table. When I'm using a hash map/table, the keys I use are typically strings. What are the ...
0
votes
2answers
592 views

Java HashMap cannot find key from within ListDataListener event

Can someone explain why the HashMap acts like it does in this example: Simple test that checks a hashmap for a key. Once in the constructor and once in ListDataListener intervallAdded method. import ...
5
votes
5answers
997 views

hashCode, implementation, and relation to HashMap

So I asked another related question here: java string hash function with avalanche effect, but I have a different, related question now. What I established in that question was that the hashCode() ...
1
vote
3answers
269 views

For HashMap, would implementing hashCode() for the value help if I only search by key?

I'm using Java 6. For simplicity, everything will be public. Suppose I have this simple class. public class A{ public String name; public String data; } I want to put my class A objects ...
3
votes
2answers
331 views

Influence of HashMap optimization that caches the hash code associated with each entry to its get method

from p.46 "Effective Java" Joshua Bloch. Item 9: ALways override hashCode when you override equals Some class PhoneNumber overrides equals() and doesn't override hashCode() "two instances are ...
20
votes
7answers
18k 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 ...
5
votes
4answers
3k views

Why does a HashMap rehash the hashcode supplied by the Key object

I am reading up the code of the HashMap class provided by the java 1.6 API and unable to fully understand the need of the following operation (found in the body of put and get methods) : int hash = ...
2
votes
3answers
919 views

Complex HashMap has different hashCode after serialization

I am parsing a xml file into a complex HashMap looking like this: Map<String, Map<String, EcmObject> EcmObject: public class EcmObject implements Comparable, Serializable { private ...
1
vote
2answers
106 views

How to decide the hashcode value for storing words of a dictionary?

I am preparing for my interview and came across this question: Consider that i have 1000,000 words and i want to create a dictionary . The data structure i can use is Map or B+ trees . But on what ...
6
votes
6answers
20k views

Understanding the workings of equals and hashCode in a HashMap

I have this test code: import java.util.*; class MapEQ { public static void main(String[] args) { Map<ToDos, String> m = new HashMap<ToDos, String>(); ToDos t1 = new ...
6
votes
3answers
2k views

Order of items in a HashMap differ when the same program is run in JVM5 vs JVM6?

I have an application which displays a collection of objects in rows, one object = one row. The objects are stored in a HashMap. The order of the rows does not affect the functionality of the ...
1
vote
1answer
607 views

How should I implement this HashMap's equals and hashCode methods to represent an automaton state?

I want to put State objects (which are HashMaps with Character as key and State as Value into an ArrayList named allStates. Should I override the equals and hashCode methods here? Why? How? This ...
1
vote
7answers
2k views

Do all Hash-based datastructures in java use the 'bucket' concept?

The hash structures I am aware of - HashTable, HashSet & HashMap. Do they all use the bucket structure - ie when two hashcodes are similar exactly the same one element does not overwrite the ...
13
votes
10answers
33k views

Internal implementation of java.util.HashMap and HashSet

I have been trying to understand the internal implementation of java.util.HashMap and java.util.HashSet. Following are the doubts popping in my mind for a while: Whats is the importance of the ...

1 2