- HashSet set1 = new HashSet(Arrays.asList("b c e f g a".split(" ")));
- LinkedHashSet set2 = new LinkedHashSet(Arrays.asList("b c e f g a".split(" ")));
- SortedSet set3 = new TreeSet(Arrays.asList("b c e f g a".split(" ")));
- System.out.println(set1);
- System.out.println(set2);
- System.out.println(set3);
输出结果为:
[f, g, e, b, c, a]
[b, c, e, f, g, a]
[a, b, c, e, f, g]
HashSet按Hash函数排序
LinkedHashSet按插入顺序排序
TreeSet按字母顺序排序
/**
* description 几个set的比较
* HashSet:哈希表是通过使用称为散列法的机制来存储信息的,元素并没有以某种特定顺序来存放;
* LinkedHashSet:以元素插入的顺序来维护集合的链接表,允许以插入的顺序在集合中迭代;
* TreeSet:提供一个使用树结构存储Set接口的实现,对象以升序顺序存储,访问和遍历的时间很快。
*/
本文对比了三种集合实现方式:HashSet基于哈希表,按Hash函数排序;LinkedHashSet按插入顺序排序;TreeSet使用树结构,按字母顺序排序。详细介绍了它们的特点、区别及应用场景。
3159

被折叠的 条评论
为什么被折叠?



