Ok so i am new to these HashMaps but have some idea about LinkedLists and HashMaps.
It would be great if you could give me some simple explanation regarding LinkedHashMap and a
The biggest difference is LinkedHashMap is ordered. If you use an iterator the keys and values will be in the same order they were added to the map. HashMap has no guarantee of the order they are returned.