Map m1 = new HashMap();
    m1.put("map", "HashMap");
    m1.put("schildt", "java2");
    m1.put("mathew", "Hyden");
    m1.put("schildt", "java2s");
    print(m1.keySet()); 
    print(m1.values()); 

    SortedMap sm = new TreeMap();
    sm.put("map", "TreeMap");
    sm.put("schildt", "java2");
    sm.put("mathew", "Hyden");
    sm.put("schildt", "java2s");
    print(sm.keySet()); 
    print(sm.values());

    LinkedHashMap lm = new LinkedHashMap();
    lm .put("map", "LinkedHashMap");
    lm .put("schildt", "java2");
    lm .put("mathew", "Hyden");
    lm .put("schildt", "java2s");
    print(lm .keySet()); 
    print(lm .values()); 

What is the difference between these three? I don't see any difference in the output as all the three has keySet and values. What are Hashtables?

link|improve this question

75% accept rate
feedback

6 Answers

up vote 34 down vote accepted

All three classes implement the Map interface and offer mostly the same functionality. The most important difference is the order in which iteration through the entries will happen:

  • HashMap makes absolutely not guarantees about the iteration order. It can (and will) even change completely when new elements are added.
  • TreeMap will iterate according to the "natural ordering" of the keys according to their compareTo() method (or an externally supplied Comparator). Additionally, it implements the SortedMap interface, which contains methods that depend on this sort order.
  • LinkedHashMap will iterate in the order in which the entries were put into the map

"Hashtable" is the generic name for hash-based maps. In the context of the Java API, Hashtable is an obsolete class from the days of Java 1.1 before the collections framework existed. It should not be used anymore, because its API is cluttered with obsolete methods that duplicate functionality, and its methods are synchronized (which can decrease performance and is generally useless).

link|improve this answer
What is then Map actually and whats the difference between Map,HashMap and Hashtables. – user98514 May 22 '10 at 21:21
@theband: Map is an interface. HashMap and Hashtable both implement it; as I wrote, Hashtable is a legacy class. – Michael Borgwardt May 22 '10 at 21:22
@theband: Read the API doc, that's what it's for: java.sun.com/javase/6/docs/api/java/util/package-summary.html – Michael Borgwardt May 22 '10 at 21:32
4  
A notable difference between Hashtable and HashMap is that in a Hashtable, "neither the key nor the value can be null". This constraint does not exist on the latter. – aioobe May 22 '10 at 21:36
feedback

All the three represent mapping from unique keys to values, and therefore implement the Map interface.

1) HashMap is a map based on hashing of the keys. It supports O(1) get/put operations. Keys must have consistent implementations of hashCode() and equals() for this to work.

2) LinkedHashMap is very similar to HashMap, but it adds awareness to the order at which items are added (or accessed), so the iteration order is the same as insertion order (or access order, depending on construction parameters).

3) TreeMap is a tree based mapping. Its put/get operations take O(log n) time. It requires items to have some comparison mechanism, either with Comparable or Comparator. The iteration order is determined by this mechanism.

link|improve this answer
feedback

These are different implementations of the same interface. Each implementation has some advantages and some disadvantages (fast insert, slow search) or vice versa.

For details look at the javadoc of TreeMap, HashMap, LinkedHashMap.

link|improve this answer
What are Hashtables actually and what makes it differ from a Map. – user98514 May 22 '10 at 21:16
feedback

That should be useful: Map Implementations.

link|improve this answer
feedback

@Amit: SortedMap is an interface whereas TreeMap is a class which implements the SortedMap interface. That means if follows the protocol which SortedMap asks its implementers to do. A tree unless implemented as search tree, can't give you ordered data because tree can be any kind of tree. So to make TreeMap work like Sorted order, it implements SortedMap ( e.g, Binary Search Tree - BST, balanced BST like AVL and R-B Tree , even Ternary Search Tree - mostly used for iterative searches in ordered way ).

public class TreeMap extends AbstractMap implements SortedMap, Cloneable, Serializable

In NUT-SHELL HashMap : gives data in O(1) , no ordering TreeMap : gives data in O(log N), base 2. with ordered keys LinkedHashMap : is Hash table with linked list (think of indexed-SkipList) capability to store data in the way it gets inserted in the tree. Best suited to implement LRU ( least recently used ).

link|improve this answer
feedback

HASH MAP: It has pair values(keys,values) NO duplication key values unordered unsortered it allows one null key and more than one null values HASH TABLE: same as hash map it does not allows null keys and null values LINKED HASH MAP: It is ordered version of map implementation Based on linked list and hashing data structures TREE MAP: Ordered and sortered version based on hashing data structures

link|improve this answer
feedback

protected by awoodland Mar 16 at 14:30

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.