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 tables to store values.....
|
Apart from the fact that I mean implementation wise.....? It's a little bit vague because both use hash tables to store values..... |
||||
|
|
|
They are entirely different constructs. A On the other hand, a When you are looking for what will be the best |
|||||||||||||||||||
|
|
HashSet is a set, e.g. {1,2,3,4,5} HashMap is a key -> value (key to value) map, e.g. {a -> 1, b -> 2, c -> 2, d -> 1} Notice in my example above that in the HashMap there must not be duplicate keys, but it may have duplicate values. In the HashSet, there must be no duplicate elements. |
|||||||||
|
|
It's really a shame that both their names start with Hash. That's the least important part of them. The important parts come after the Hash - the Set and Map, as others have pointed out. What they are, respectively, are a Set - an unordered collection - and a Map - a collection with keyed access. They happen to be implemented with hashes - that's where the names come from - but their essence is hidden behind that part of their names. Don't be confused by their names; they are deeply different things. |
|||
|
|
|
A HashSet is implemented in terms of a HashMap. It's a mapping between the key and a PRESENT object. |
|||
|
|
|
As the names imply, a HashMap is an associative Map (mapping from a key to a value), a HashSet is just a Set. |
|||||||||||||||||
|
|
you pretty much answered your own question - hashset doesn't allow duplicate values. it would be trivial to build a hashset using a backing hashmap (and just a check to see if the value already exists). i guess the various java implementations either do that, or implement some custom code to do it more efficiently. |
|||||
|
|
HashSet allows us to store objects in the set where as HashMap allows us to store objects on the basis of key and value. Every object or stored object will be having key. |
|||
|
|
|
A So a HashMap contains the elements and a HashSet remembers their hashes. |
|||
|
|
|
A HashSet uses a HashMap internally to store its entries. Each entry in the internal HashMap is keyed by a single Object, so all entries hash into the same bucket. I don't recall what the internal HashMap uses to store its values, but it doesn't really matter since that internal container will never contain duplicate values. EDIT: To address Matthew's comment, he's right; I had it backwards. The internal HashMap is keyed with the Objects that make up the Set elements. The values of the HashMap are an Object that's just simply stored in the HashMap buckets. |
||||
|
|
Differences: with respect to heirarchy: HashSet implements Set. HashMap implements Map and stores a mapping of keys and values. A use of HashSet and HashMap with respect to database would help you understand the significance of each.
|
|||
|
|
|
Basically in HashMap, user has to provide both Key and Value, whereas in HashSet you provide only Value, the Key is derived automatically from Value by using hash function. So after having both Key and Value, HashSet can be stored as HashMap internally. |
|||
|
|
|
HashSet and HashMap both store pairs , the difference lies that in HashMap you can specify a key while in HashSet the key comes from object's hash code |
|||
|
|
|
Differences between HashSet and HashMap in Java 1) First and most significant difference between HashMap and HashSet is that HashMap is an implementation of Map interface while HashSet is an implementation of Set interface, which means HashMap is a key value based data-structure and HashSet guarantees uniqueness by not allowing duplicates.In reality HashSet is a wrapper around HashMap in Java, if you look at the code of add(E e) method of HashSet.java you will see following code :
where its putting Object into map as key and value is an final object PRESENT which is dummy. 2) Second difference between HashMap and HashSet is that , we use add() method to put elements into Set but we use put() method to insert key and value into HashMap in Java. 3) HashSet allows only one null key, but HashMap can allow one null key + multiple null values. That's all on difference between HashSet and HashMap in Java. In summary HashSet and HashMap are two different type of Collection one being Set and other being Map. |
|||
|
|
|
|
||||
|
|