Java經典執行個體:實現一個簡單堆棧,java經典執行個體堆棧

來源:互聯網
上載者:User

Java經典執行個體:實現一個簡單堆棧,java經典執行個體堆棧

堆棧(Stack)是一種常見的資料結構,符合後進先出(First In Last Out)原則,通常用於實現對象存放順序的逆序。棧的基本操作有push(添加到堆棧),pop(從堆棧刪除),peek(檢測棧頂元素且不刪除)。

/** * Created by Frank */public class ToyStack {    /**     * 棧的最大深度     **/    protected int MAX_DEPTH = 10;    /**     * 棧的當前深度     */    protected int depth = 0;    /**     * 實際的棧     */    protected int[] stack = new int[MAX_DEPTH];    /**     * push,向棧中添加一個元素     *     * @param n 待添加的整數     */    protected void push(int n) {        if (depth == MAX_DEPTH - 1) {            throw new RuntimeException("棧已滿,無法再添加元素。");        }        stack[depth++] = n;    }    /**     * pop,返回棧頂元素並從棧中刪除     *     * @return 棧頂元素     */    protected int pop() {        if (depth == 0) {            throw new RuntimeException("棧中元素已經被取完,無法再取。");        }        // --depth,dept先減去1再賦值給變數dept,這樣整個棧的深度就減1了(相當於從棧中刪除)。        return stack[--depth];    }    /**     * peek,返回棧頂元素但不從棧中刪除     *     * @return     */    protected int peek() {        if (depth == 0) {            throw new RuntimeException("棧中元素已經被取完,無法再取。");        }        return stack[depth - 1];    }}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.