【Java】堆栈的实现

发布时间:2019-07-17 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了【Java】堆栈的实现脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

Java实现

/*
 * 泛型实现下推堆栈
 */
public class LinkedStack<T> {
    /*堆栈节点*/
    private static class Node<U> {
        U item;
        Node<U> next;

        Node() {                                            //构造方法1
            item = null;
            next = null;
        }

        Node(U item, Node<U> next) {            //构造方法2
            this.item = item;
            this.next = next;
        }
        //判断是否为空
        boolean end() {return item == null && next == null;}
    }

    private Node<T> top = new Node<T>();        //指向栈顶

    public void push(T item) {              //push操作
        top = new Node<T>(item, top);
    }

    public T pop() {                                    //pop操作
        T result = top.item;
        if (!top.end()) {
            top = top.next;
        }
        return result;
    }

    /*main函数用于测试*/
    public static void main(String[] args) {
        LinkedStack<String> lss = new LinkedStack<String>();
        for (String s : "Phasers on stun!".split(" "))
            lss.push(s);
        String s;
        while ((s = lss.pop()) != null)
            System.out.println(s);
    }
}

测试结果

stun!
on
Phasers

C实现

typedef struct stack
{
    int data;
    struct stack*next;
}stack;

static stack* top;

int is_empty()
{
    return top==NULL;
}

void push(int a)
{
    stack*p;
    p=(stack*)malloc(sizeof(stack));
    p->data=a;
    p->next=top;
    top=p;
}

void pop()
{
    stack* q;
    q=top;
    top=top->next;
    free(q);
}

脚本宝典总结

以上是脚本宝典为你收集整理的【Java】堆栈的实现全部内容,希望文章能够帮你解决【Java】堆栈的实现所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: