数据结构-链栈

#include<stdio.h>
#include<malloc.h>
#include<error.h>
/*
 * 头节点为空
 * */
typedef int datatype;
typedef struct _node_
{
    datatype data;
    struct _node_ *next;
}linknod,*linkstack;
linkstack creat_empty_linkstack()
{
    linkstack l;
    l=(linkstack)malloc(sizeof(linknod));
    l->next=NULL;
    return l;
}
int empty_linkstack(linkstack l)
{
    return NULL==l->next;
}
int push_linkstack(linkstack h,datatype x)
{
    linkstack q;
    q=(linkstack)malloc(sizeof(linknod));
    q->data=x;
    q->next=h->next;
    h->next=q;
    return 1;
}
datatype pop_linkstack(linkstack h)
{
    linkstack q;
    datatype temp;
    q=h;
    q=h->next;
    h->next=q->next;
    temp=q->data;
    free(q);
    return temp;
}
datatype get_pop(linkstack h)
{
    return h->next->data;
}
int clear_linkstack(linkstack h)
{
    linkstack q;
    if(empty_linkstack(h))
    {
        return 0;
    }
    else
    {
        q=h->next;
        while(q!=NULL)
        {
            h->next=q->next;
            q=h->next;
            free(q);//释放指针所指到内存空间
        }
            q=NULL;
        return 1;
    }
}
int lenth_linkstack(linkstack h)
{
    int len=0;
    linkstack q;
    if(empty_linkstack(h))
    {
        return 0;
    }
    else
    {
        q=h->next;
        while(q!=NULL)
        {
            len++;
            q=q->next;
        }
        return len;
    }
}
int main(int argc,char *argv[])
{
    linkstack l;
    l=creat_empty_linkstack();
    printf("清空:%d\n",clear_linkstack(l));
    push_linkstack(l,200);
    printf("栈顶指针:%d\n",get_pop(l));
    push_linkstack(l,300);
    printf("栈顶指针:%d\n",get_pop(l));
    printf("lenth:%d\n",lenth_linkstack(l));
    printf("清空:%d\n",clear_linkstack(l));
    push_linkstack(l,200);
    printf("栈顶指针:%d\n",get_pop(l));
    printf("入栈数据:%d\n",l->next->data);
    printf("判断栈是否为空:%d\n",empty_linkstack(l));
    printf("出栈数据:%d\n",pop_linkstack(l));
    printf("判断栈是否为空:%d\n",empty_linkstack(l));
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值