Java HashSet和LinkedHashSet的用法

Java HashSet和LinkedHashSet的用法

类HashSet和LinkedHashSet都是接口Set的实现,两者都不能保存重复的数据。主要区别是HashSet不保证集合中元素的顺序,即不能保证迭代的顺序与插入的顺序一致。

而LinkedHashSet按照元素插入的顺序进行迭代,即迭代输出的顺序与插入的顺序保持一致。

以下是HastSet和LinkedHashSet的用法示例:

[java] view plain copy

  1. import java.util.Collections;
  2. import java.util.HashSet;
  3. import java.util.Iterator;
  4. import java.util.LinkedHashSet;
  5. import java.util.Set;
  6. public class JavaTest {
  7. // HashSet不保证集合的迭代顺序;也许在某些时间迭代的顺序与插入顺序一致,但是不保证该顺序恒久不变。
  8. private static Set<Integer> mSetInt = new HashSet<Integer>();
  9. private static Set<String> mSetString = new HashSet<String>();
  10. // LinkedHashSet按照元素插入的顺序进行迭代,LinkedHashSet不是线程安全的。
  11. private static Set<Integer> mLinkedSetInt = Collections.synchronizedSet(new LinkedHashSet<Integer>());
  12. private static Set<String> mLinkedSetString = Collections.synchronizedSet(new LinkedHashSet<String>());
  13. /**
  14. * @param args
  15. */
  16. public static void main(String[] args) {
  17. for (int i = 0; i < 50; i++) {
  18. mSetInt.add(i);
  19. mSetString.add(String.valueOf(i));
  20. mLinkedSetInt.add(i);
  21. mLinkedSetString.add(String.valueOf(i));
  22. }
  23. Iterator<Integer> setIntIt = mSetInt.iterator();
  24. System.out.println("The sequence of HashSet for Integer:");
  25. while(setIntIt.hasNext()) {
  26. System.out.print(setIntIt.next() + " ");
  27. }
  28. System.out.println();
  29. System.out.println("The sequence of HashSet for String:");
  30. Iterator<String> setStringIt = mSetString.iterator();
  31. while(setStringIt.hasNext()) {
  32. System.out.print(setStringIt.next() + " ");
  33. }
  34. System.out.println();
  35. System.out.println("The sequence of LinkedHashSet for Integer:");
  36. Iterator<Integer> linkedSetIntIt = mLinkedSetInt.iterator();
  37. while(linkedSetIntIt.hasNext()) {
  38. System.out.print(linkedSetIntIt.next() + " ");
  39. }
  40. System.out.println();
  41. System.out.println("The sequence of LinkedHashSet for String:");
  42. Iterator<String> linkedSetStringIt = mLinkedSetString.iterator();
  43. while(linkedSetStringIt.hasNext()) {
  44. System.out.print(linkedSetStringIt.next() + " ");
  45. }
  46. System.out.println();
  47. }
  48. }

输出结果如下:

The sequence of HashSet for Integer:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 16 19 18 21 20 23 22 25 24 27 26 29 28 31 30 34 35 32 33 38 39 36 37 42 43 40 41 46 47 44 45 49 48 
The sequence of HashSet for String:
35 36 33 34 39 37 38 43 42 41 40 22 23 24 25 26 27 28 29 3 2 1 0 7 30 6 5 32 4 31 9 8 19 17 18 15 16 13 14 11 12 21 20 49 48 45 44 47 46 10 
The sequence of LinkedHashSet for Integer:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 
The sequence of LinkedHashSet for String:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

从输出结果看,如果HastSet中保存的是Integer类型和String类型的对象,迭代的顺序与插入的顺序不一致,其中String类型的元素不一致的情况比Integer类型的元素要明显的多。

map<string,map<string,string>>:map中map用法示例

include <iostream>
#include <map>
using namespace std;
int main()
{
    map<string,map<string,string> > mapmaps;
    map<string,string> mapmap;
    mapmap.insert(pair<string,string>("ysl","ysh"));
    mapmaps.insert(pair<string,map<string,string> >("ysy",mapmap));

    cout<<mapmaps.begin()->first<<endl;
    cout<<mapmaps.begin()->second.begin()->first<<endl;
    cout<<mapmaps.begin()->second.begin()->second<<endl;
    return 0;
}
结果:

ysy
ysl
ysh

Process returned 0 (0x0) execution time : 0.250 s
Press any key to continue.
时间: 2024-10-21 12:32:53

Java HashSet和LinkedHashSet的用法的相关文章

【Java集合系列四】HashSet和LinkedHashSet解析

2017-07-29 16:58:13 一.简介 1.Set概念 Set可以理解为集合,非常类似数据概念中的集合,集合三大特征:1.确定性:2.互异性:3.无序性,因此Set实现类也有类似的特征. 2.HashSet HashSet继承自AbstractSet,实现了Set接口,但是其源码非常少,也非常简单.内部使用HashMap来存储数据,数据存储在HashMap的key中,value都是同一个默认值: 二.HashSet几个重要的方法 1.add(E e) HashSet的确定性,也可以理解

【JAVA集合】HashSet、LinkedHashSet、TreeSet

以下内容基于jdk1.7.0_79源码: 关于HashSet.LinkedHashSet.TreeSet Set接口的实现类,最大特点是不允许出现重复元素: HashSet:基于HashMap实现,一个性能相对较好的Set: LinkedHashSet:基于LinkedHashMap实现,一个保存了插入顺序的Set: TreeSet:基于TreeSet实现,一个实现了排序的Set: 类图关系 源码分析 Set接口的实现类相对来说都比较简单,如果熟悉HashMap.LinkedHashMap.Tr

Java集合系列(三):HashSet、LinkedHashSet、TreeSet的使用方法及区别

本篇博客主要讲解Set接口的三个实现类HashSet.LinkedHashSet.TreeSet的使用方法以及三者之间的区别. 注意:本文中代码使用的JDK版本为1.8.0_191 1. HashSet使用 HashSet是Set接口最常用的实现类,底层数据结构是哈希表,HashSet不保证元素的顺序但保证元素必须唯一. private transient HashMap<E,Object> map; HashSet类的代码声明如下所示: public class HashSet<E&g

Java自学-集合框架 HashSet、LinkedHashSet、TreeSet之间的区别

HashSet. LinkedHashSet.TreeSet之间的区别 步骤 1 : HashSet LinkedHashSet TreeSet HashSet: 无序 LinkedHashSet: 按照插入顺序 TreeSet: 从小到大排序 package collection; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.TreeSet; public class TestCollec

Leetcode: LFU Cache &amp;&amp; Summary of various Sets: HashSet, TreeSet, LinkedHashSet

Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the following operations: get and set. get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1. s

java中list接口的用法

list为继承自collection接口的接口,list里存储的值的类型通过list<object>泛型来声明:存值时调用ArrayList类的add方法,删除时调用用remove方法.list的很多方法与set很相似,但在存储结构上有区别,set的存储特点为无序和互异,相反的,list的存储特点为有序和存异. package test_list; import java.util.ArrayList; import java.util.HashSet; import java.util.It

一、集合框架(关于ArrayList,LinkedList,HashSet,LinkedHashSet,TreeSet)

一.ArrayList 解决了数组的局限性,最常见的容器类,ArrayList容器的容量capacity会随着对象的增加,自动增长.不会出现数组边界的问题. package collection;   import java.util.ArrayList;   import charactor.Hero;   public class TestCollection {     @SuppressWarnings("rawtypes")     public static void ma

数据结构 - HashSet、LinkedHashSet 二合一

简介 HashSet 是HashMap键的封装,我们都知道HashMap是数组+链表或数组+树结构,那么HashSet也是这种结构.HashMap只能存入一个null键,那么HashSet也就只能有一个null值:LinkedHashSet 是LinkedHashMap 键的封装,LinkedHashSet 继承HashSet. HashSet 类 public class HashSet<E> extends AbstractSet<E> implements Set<E&

Java EE学习--Quartz基本用法

新浪博客完全不适合写技术类文章.本来是想找一个技术性的博客发发自己最近学的东西,发现博客园起源于咱江苏,一个非常质朴的网站,行,咱要养成好习惯,以后没事多总结总结经验吧.很多时候都在网上搜索别人的总结,我自己也总结些东西,或许多多少少能帮得上别人. 首先提到的是Quartz,一个开源的定期执行计划任务的框架.其实我内心好奇这个框架很久了,像那些能定时修改数据库数据,定时分配任务的功能一直觉得很神奇.心动不如行动,今天我就小小的学习了一下用法,力求言简意赅,大家都懂的我就不说了. 第一步:下载Qu