LinkedHashSet介绍
作者:互联网
Set接口实现类——LinkedHashSet
LinkedHashSet的全面说明
- LinkedHashSet是HashSet的子类
- LinkedHashSet底层是一个LinkedHashMap,底层维护了一个数组+双向链表
- LinkedHashSet根据元素的hashCode值来决定元素的存储位置,同时使用链表维护元素的次序,这使得元素看起来是以插入顺序保存的。
- LinkedHashSet不允许添加重复元素
说明
- 在LinkedHashSet中维护了一个hash表和双向链表(LinkedHashSet有head和tail)
- 每一个节点有pre和next属性,这样可以形成双向链表
- 在添加一个元素时,先求hash值,再求索引,确定该元素在hashtable的位置,然后将添加的元素加入到双向链表(如果已经存在,不添加(原则和HashSet一样))
tail.next = newElement;//简单指定 newELement.pre = tail; tail = newElement;
- 这样的话,我们遍历LinkedHashSet也能确保插入顺序和遍历顺序一致
标签:LinkedHashSet,元素,介绍,链表,tail,添加,双向 来源: https://www.cnblogs.com/wshjyyysys/p/15815521.html