Could someone explain the main benefits for choosing one over the other and the detriments that come with that choice?
feedback
|
|
They solve different problems, LinkedHashMap does a mapping of keys to values, a LinkedHashSet simply stores a collection of things with no duplicates. A linked hash map is for mapping key/value pairs -- for example, storing names and ages:
On the other hand, a linked hash set is for storing a collection of one thing -- names, for example:
| |||||||||||
feedback
|
|
A Set has just values, you cannot put duplicates in. a Map has a key/value pair. They have different uses. A set will get used as a collection, passing in a group of objects, whereas a map is useful for when you have a unique key to identify each element and you want to be able to access it by that key. | |||
|
feedback
|
|
LinkedHashSet internally contain a doubly-linked list running through all of its entries that defines the order of elements. This class permits null elements. This class implementation is not synchronized, so it must be synchronized externally. LinkedHashMap is not synchronized either and must be synchronized externally For example:
Other than that LinkedHashSet stores single values per element and LinkedHashMap stores key/value pair. | |||
|
feedback
|
|
One's a set, and one's a map. Choose the correct data structure for a given scenario. | ||||
|
feedback
|
|
Using | |||
|
feedback
|
