首页 > 其他 > 详细

编程题:利用链表实现栈

时间:2019-10-13 23:10:28      阅读:90      评论:0      收藏:0      [点我收藏+]
class Node<E>{
    E data;
    Node<E> next = null;
    public Node(E data){
        this.data = data;
    }
}

class ListStack<E>{
    Node<E> top = null;
    public boolean empty(){
        return top == null;
    }

    //头插法插入新节点,实现入栈
    public void push(E data){
        Node<E> newNode = new Node<E>(data);
        newNode.next = top;
        top = newNode;
    }

    public E pop(){
        if(this.empty()){
            return null;
        }
        E data = top.data;
        top = top.next;
        return data;
    }

    public E peek(){
        if(empty())
            return null;
        return top.data;
    }
}

 

编程题:利用链表实现栈

原文:https://www.cnblogs.com/hetaoyuan/p/11668382.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!