LinkedHashSet
Problem statement: what do you mean by LinkedHashSet in collection?
- LinkedHashSet is the child class of HashSet
- Introduced in 1.4 version
- LinkedHashSet is exactly same as HashSet except the following difference
- HashSet:
- The underlying data structure is Hashtable
- Insertion order is not preserved
- Introduced in 1.2 version
- LinkedHashSet:
- The underlying data structure is Hash table + Linked List(this is hybrid data structure)
- Insertion order is preserved
- Introduced in 1.4 version
Comments
Post a Comment