首页 > 编程语言 > 详细

C语言实现常用数据结构——栈

时间:2018-09-05 19:11:06      阅读:168      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<stdlib.h>
//用链表实现栈
typedef struct Node {
    int data;
    struct Node *next;
} node;

int IsEmpty(node *p) {
    return p->next==NULL;
}

node *CreateStack() {
    node *p=(node*)malloc(sizeof(node));
    p->next=NULL;
    return p;
}


node *Push(node *p,int x) {
    node *TmpCell=(node*)malloc(sizeof(node));
    TmpCell->data=x;
    TmpCell->next=p->next;
    p->next=TmpCell;
    return p;
}

void Pop(node *p) {
    node *cell;
    if(p->next==NULL) {
        printf("error,-1");
    } else {
        cell=p->next;
        p->next=cell->next;
        free(cell);
    }
}

void display(node *p) {
    node *temp=p;
    while(temp->next) {
        printf("%d",temp->next->data);
        temp=temp->next;
    }
    printf("%c",\n);
}

main() {
    node *p=CreateStack();
    Push(p,1);
    Push(p,2);
    Push(p,3);
    Push(p,4);
    display(p);
    Pop(p);
    display(p);
    Pop(p);
    display(p);
}

 

C语言实现常用数据结构——栈

原文:https://www.cnblogs.com/wangbin2188/p/9593673.html

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