12345678_0001
TreeSet由 a 支持TreeMap(以类似的方式HashSet由 支持HashMap)。如果您查看TreeSet构造函数:public TreeSet() { this(new TreeMap<E,Object>());}TreeMap使用用TreeMap.Entry类表示的节点在内部存储数据:static final class Entry<K,V> implements Map.Entry<K,V> { K key; V value; Entry<K,V> left; Entry<K,V> right; Entry<K,V> parent; boolean color = BLACK;...那里没有额外的数组或列表。