Java ArrayDeque實現Stack的功能_java

來源:互聯網
上載者:User

在J2SE6引入了ArrayDeque類,它繼承了Deque(雙向隊列)介面,使用此類可以自己實現java.util.Stack類的功能,去掉了java.util.Stack的多線程同步的功能。

例如建立一個存放Integer類型的Stack,只要在類中建立一個ArrayDeque類的變數作為屬性,之後定義的出棧、入棧,觀察棧頂元素的操作就直接操作ArrayDeque的執行個體變數即可。 

import java.util.ArrayDeque; import java.util.Deque;  public class IntegerStack {   private Deque<Integer> data = new ArrayDeque<Integer>();    public void push(Integer element) {     data.addFirst(element);   }    public Integer pop() {     return data.removeFirst();   }    public Integer peek() {     return data.peekFirst();   }    public String toString() {     return data.toString();   }    public static void main(String[] args) {     IntegerStack stack = new IntegerStack();     for (int i = 0; i < 5; i++) {       stack.push(i);     }     System.out.println(stack);     System.out.println("After pushing 5 elements: " + stack);     int m = stack.pop();     System.out.println("Popped element = " + m);     System.out.println("After popping 1 element : " + stack);     int n = stack.peek();     System.out.println("Peeked element = " + n);     System.out.println("After peeking 1 element : " + stack);   } }  

java.util.ArrayDeque的源碼:    

private transient E[] elements;  private transient int head;  private transient int tail;  /*此處存放e的位置是從elements數組最後的位置開始儲存的*/  public void addFirst(E e) {     if (e == null)       throw new NullPointerException();     elements[head = (head - 1) & (elements.length - 1)] = e;//首次數組容量預設為16,head=(0-1)&(16-1)=15     if (head == tail)       doubleCapacity();   }  /*每次擴容都按插入的先後順序重新放入一個新的數組中,最新插入的放在數組的第一個位置。*/   private void doubleCapacity() {     assert head == tail;     int p = head;     int n = elements.length;     int r = n - p; // number of elements to the right of p     int newCapacity = n << 1;     if (newCapacity < 0)       throw new IllegalStateException("Sorry, deque too big");     Object[] a = new Object[newCapacity];     System.arraycopy(elements, p, a, 0, r);     System.arraycopy(elements, 0, a, r, p);     elements = (E[])a;     head = 0;     tail = n;   }    public E removeFirst() {     E x = pollFirst();     if (x == null)       throw new NoSuchElementException();     return x;   }    public E pollFirst() {     int h = head;     E result = elements[h]; // Element is null if deque empty     if (result == null)       return null;     elements[h] = null;   // 重新設定數組中的這個位置為null,方便記憶體回收。     head = (h + 1) & (elements.length - 1);//將head的值回退,相當於將棧的指標又向下移動一格。例如,12--〉13     return result;   }    public E peekFirst() {     return elements[head]; // elements[head] is null if deque empty   } 

以上就是本文的全部內容,希望對大家學習java程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.