码迷,mamicode.com
首页 > 编程语言 > 详细

C语言实现顺序栈

时间:2021-03-29 12:23:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:==   col   c语言   nbsp   number   ber   define   int   实现   

#include <stdio.h>

#define NUMBER 100

int push(int* a, int top, int data)
{
    a[++top] = data;
    return top;
}

int pop(int* a, int top)
{
    if (top == -1) {
        return -1;
    }
    printf("%d\n",a[top]);
    top--;
    return top;
}

int main()
{
    int a[NUMBER];
    int top = -1;
    top = push(a, top, 1);
    top = push(a, top, 3);
    top = push(a, top, 5);

    top = pop(a, top);
    top = pop(a, top);
    top = pop(a, top);

    return 0;
}

 

C语言实现顺序栈

标签:==   col   c语言   nbsp   number   ber   define   int   实现   

原文地址:https://www.cnblogs.com/zgen1/p/14585250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!