栈是最基本的数据结构之一,其特点是先进后出

1.基于数组的可动态调节大小的栈

public class ResizingArrayStack<Item>
{
    private Item[] a;
    private int N;

    public ResizingArrayStack(int cap)
    {
        a = (Item[]) new Object[cap];
    }

    private void resize(int max)
    { // 将栈移动到一个大小为max的新数组
        Item[] temp = (Item[]) new Object[max];
        for (int i = 0; i < N; i++)
        {
            temp[i] = a[i];
        }
        a = temp;
    }

    public boolean isEmpty()
    {
        return N == 0;
    }

    public int size()
    {
        return N;
    }

    public void push(Item item)
    { // 将元素添加到栈顶
        if (N == a.length)
        {
            resize(2 * a.length);
        }
        a[N++] = item;
    }

    public String pop()
    { // 从栈顶删除元素
        String item = (String) a[--N];
        a[N] = null;// 避免对象游离
        if (N > 0 && N == a.length / 4)
        {
            resize(a.length / 2);
        }
        return item;
    }
}

2.基于链表的栈

public class LinkedListStack<Item>
{
    private Node first;    //栈顶
    private int N;        //元素数量
    
    private class Node
    {    //定义了结点的嵌套类
        Item item;
        Node next;
    }
    
    public boolean isEmpty()
    {
        return first==null;    //或者N==0
    }
    
    public int size()
    {
        return N;
    }
    
    public void push(Item item)
    {    //向栈顶添加元素
        Node oldfirst=first;
        first=new Node();
        first.item=item;
        first.next=oldfirst;
        N++;
    }
    
    public Item pop()
    {    //从栈顶删除元素
        Item item=first.item;
        first=first.next;
        N--;
        return item;
    }
}

转载于:https://www.cnblogs.com/yahuian/p/10745004.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值