if (initialCapacity < 0) // Too many elements, must back off initialCapacity >>>= 1;// Good luck allocating 2 ^ 30 elements } elements = newObject[initialCapacity]; }
privatevoiddoubleCapacity() { assert head == tail; intp= head; intn= elements.length; intr= n - p; // number of elements to the right of p intnewCapacity= n << 1; if (newCapacity < 0) thrownewIllegalStateException("Sorry, deque too big"); Object[] a = newObject[newCapacity]; System.arraycopy(elements, p, a, 0, r); System.arraycopy(elements, 0, a, r, p); elements = a; head = 0; tail = n; }
privatebooleandelete(int i) { checkInvariants(); final Object[] elements = this.elements; finalintmask= elements.length - 1; finalinth= head; finalintt= tail; finalintfront= (i - h) & mask; finalintback= (t - i) & mask;
// Invariant: head <= i < tail mod circularity if (front >= ((t - h) & mask)) thrownewConcurrentModificationException();
// 最少元素移动优化 if (front < back) { // 左边元素少 if (h <= i) { // 正常型 System.arraycopy(elements, h, elements, h + 1, front); } else { // 环绕型 System.arraycopy(elements, 0, elements, 1, i); elements[0] = elements[mask]; System.arraycopy(elements, h, elements, h + 1, mask - h); } elements[h] = null; head = (h + 1) & mask; returnfalse; } else { // 右边元素少 if (i < t) { // 正常型 System.arraycopy(elements, i + 1, elements, i, back); tail = t - 1; } else { // 环绕型 System.arraycopy(elements, i + 1, elements, i, mask - i); elements[mask] = elements[0]; System.arraycopy(elements, 1, elements, 0, t); tail = (t - 1) & mask; } returntrue; } }
代码实现虽然有点长,不过原理其实也很简单。
代码实现中,为了减少数组元素的移动,对移动进行了优化,移动时采用最少元素移动原则。
1 2 3 4 5 6 7 8 9 10 11
final int h = head; final int t = tail; final int front = (i - h) & mask; final int back = (t - i) & mask; if (front < back) { // 左边元素少 // 移动左边的元素 } else { // 右边元素少 // 移动右边的元素 }