使用链表实现一个简单的栈

import java.util.Iterator;
/**
 * 用链表实现一个简单的栈:先进后出
 */
public class LinkToStack<Item> implements Iterable<Item>{

    public Node first; //栈顶元素
    public int N = 0;

    class Node{
        Node next; //指向下一个元素
        Item item; //链表的内容
    }

    /**
     * 向栈中添加元素
     */
    public void push(Item item){
        Node oldNode = first; //oldNode为栈顶的下一个元素
        first = new Node();   //创建新节点(栈顶元素)
        first.next = oldNode; //指向下一个元素
        first.item = item;
        N++;
    }

    /**
     * 删除栈顶元素
     * @return
     */
    public Item pop(){
        Item item = first.item;
        first = first.next; //删除栈顶元素后,第二个元素就变成了栈顶元素
        N--;
        return item;

    }

    /**
     * 栈是否为空
     * @return
     */
    public boolean isEmpty(){
        return N==0;
    }

    /**
     * 栈的大小
     * @return
     */
    public int  size(){
        return N;
    }


    //下面部分保证栈可以遍历迭代。也可以不要这部分,
    //毕竟是实现一个简单的栈,只要保证先进后出即可
    public Iterator<Item> iterator() {
        return new ListIterator<Item>() ;
    }

    public class ListIterator<Item> implements Iterator<Item>{

        private Node current = first;

        public boolean hasNext() {
            return current!=null;
        }

        public Item next() {
            Item item = (Item) current.item;
            current = current.next;
            return item;
        }

        public void remove() {} //暂时不实现该方法,迭代的时候最好不要删除元素
    }


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值