Java Programming
-
[Java] How to implement hash? Map or Hashmap?카테고리 없음 2015. 9. 15. 21:04
When I wanted to write code with a "hash table" that I learned from a data structure book, I was not sure what java class to use... I did some research and found that Hashmap is my best bet for most of my purposes. Hash table is a great invention. (source: http://www.quora.com/Who-invented-hash-tables) I do not write multi-threaded application. And I just want to put items in the data structure ..