08 2011 档案
摘要: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
阅读全文

浙公网安备 33010602011771号