java数据结构总览
java数据结构总览
下图为java数据结构的整体介绍
Collection类介绍
Collection类是java集合层次中的根接口,在Collection源码中介绍到Collection下的元素有
/**
*
* @author Josh Bloch
* @author Neal Gafter
* @see Set
* @see List
* @see Map
* @see SortedSet
* @see SortedMap
* @see HashSet
* @see TreeSet
* @see ArrayList
* @see LinkedList
* @see Vector
* @see Collections
* @see Arrays
* @see AbstractCollection
* @since 1.2
*/
public interface Collection<E> extends Iterable<E> {}
接下来的文章就是按每个分类来分析下这是数据结构的源码实现,以便加深自己的记忆