摘要: package yzy.datastructure.myArrayList;import java.util.Arrays;public class MyArrayList<T> {@SuppressWarnings("unchecked")public MyArrayList(){elements = (T[]) new Object[initCapicity];}public int size(){return length;}public void add(T a){if(length == maxLength){resize();}elements[le 阅读全文
posted @ 2011-08-09 11:33 图形学小菜鸟 阅读(170) 评论(0) 推荐(0)