ArrayListpackage cn.meowrain.Datastructure.collection;public class ArrayList<E> { private int size = 0; private int capacity = 10; priv