寄几用数组模拟的一个栈

package com.itguigu.myStack;

public class StackDemo {

    public static void main(String[] args) {
        int[] array = new int[3];
        Stack stack = new Stack(array);
        try {
            stack.push(1);
            stack.push(2);
            stack.push(3);
            stack.push(4);
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
        stack.show();
        try {
            System.out.println("出栈:" + stack.pop());
            System.out.println("出栈:" + stack.pop());
//            System.out.println("出栈:" + stack.pop());
//            System.out.println("出栈:" + stack.pop());
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
        stack.show();
    }

}

class Stack {
    public int[] array;
    public int rear = -1;

    public Stack(int[] array) {
        this.array = array;
    }

    public void push(int num) {
        if (rear == array.length - 1) {
            throw new RuntimeException("栈满~");
        }
        array[++rear] = num;
    }

    public int pop() {
        if (rear == -1) {
            throw new RuntimeException("栈空~");
        }
        return array[rear--];
    }

    public void show() {
        if (rear == -1) {
            System.out.println("栈空~, 无输出");
        }
        for (int i = rear; i >=0; i--) {
            System.out.printf("array[%d]=%d\n", i, array[i]);
        }
    }
}

输出结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值