04 2013 档案

摘要:在C中,我们通常会用链表,用数组来处理顺序的结构,Java中,为了方便,通常会选用List来完成各种操作Java中常见的List有:ArrayList,LinkedList(参见Java.util.各种List)ArrayListpublic class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable{......................... }LinkedListpublic class L 阅读全文
posted @ 2013-04-01 18:54 RichardHu 阅读(264) 评论(0) 推荐(0) 编辑