What is the difference between a Hash Map and dictionary ADT. And when to prefer one over another. For my programming assignment my instructor has asked to use one of them but I don't see any difference in between both. The program is supposed to work with a huge no. of strings. Any suggestions?
|
In terms of Java, both the class The |
|||
|
|
This Stack Overflow post does a good job explaining the key differences: Note that Hashtable is simply an implementation of the Dictionary ADT. Also note that Java considers Dictionary "obsolete". The fact that Hashtable is synchronized doesn't buy you much for most uses. Use HashMap. |
|||
|
|
|
In Java the HashMap implements the Map interface while the Dictionary does not. That makes the Dictionary obsolete (according to the API docs). That is, they both do a similar function so you are right that they seem very similar...a HashMap is a type of dictionary. You are advised to use the HashMap though. |
|||
|
|