-
Notifications
You must be signed in to change notification settings - Fork 1
Collections Home
Vishnu Garg edited this page Aug 3, 2018
·
6 revisions
Welcome to the Collection_Revised wiki!
Refrences
- https://www.journaldev.com/1260/collections-in-java-tutorial
- Collection Internal Working
- http://javabypatel.blogspot.com/2015/10/what-is-load-factor-and-rehashing-in-hashmap.html
- Non Duplicate
- Ordered
- LinkedHashSet extends HashSet that means it is a HashMap without duplicates. But the difference here with HashSet is that LinkedHashSet is ordered.
- It uses a Doubly Linked List that runs through the Set holding the order together.