1Main difference between HashMap and LinkedHashMap
2I remember is that LinkedHashMap maintains
3insertion order of keys,
4On the other hand HashMap doesn't maintain
5any order or keys or values.
6Also LinkedHashMap requires more memory than HashMap
7because of the ordering feature.
8LinkedHashMap doublly Linked List to
9maintain order of elements.