计算机技术实战

纸上得来终觉浅,绝知此事要躬行。

Download this project as a .zip file Download this project as a tar.gz file

图解Set和List家族

目录

Set家族图谱

Set数据结构

  1. HashSet:基于HashMap
  2. LinkedHashSet:基于LinkedHashMap
  3. TreeSet:基于TreeMap
  4. ArraySet:类似于ArrayMap

List数据结构

  1. ArrayList: 数组
  2. LinkedList:链表

List和Set的选择