public void Push(E e) { // 数组移动往后面添加元素是最不需要消耗性能的 因为往头添加元素的话需要将整个数组进行移动 arr.AddLast(e); }
public void Enqueue(E e) { //进队 arr.AddLast(e); }