集合的体系结构

#Java

集合的体系结构

graph TD;
集合--单列-->Collection;
Collection--可重复-->List;
List-->ArrayList;
List-->LinkedList;
Collection--不可重复-->Set;
Set-->HashSet;
Set-->TreeSet;
集合--双列-->Map;
Map-->HashMap;
Map-->TreeMap;