数据结构-顺序栈(进栈 出栈)

#include<stdio.h>
#define MaxSize 10

typedef struct SqStack{
    int data[MaxSize];
    int top ;
}SqStack;

//初始化顺序栈
void initStack(SqStack &S){
    S.top = -1; 
} 

//判断栈是否为空   /*栈理论上不存在为满的情况,取决于内存大小*/
int isEmpty(SqStack S){
    if(S.top == -1){//top为1表示为空 
        return 1;
    }else{
        return 0;
    } 
} 

//进栈操作
int push(SqStack &S,int e){
    //进栈要判满
    if(S.top == MaxSize-1){
        return 0;
    } 
    //先移动指针在进行复制 
    ++(S.top);      
    S.data[S.top] = e;
    return 1;
}

//出栈操作
int pop(SqStack &S,int &e){
    //出栈要判空
    if(S.top == -1){
        return 0;
    } 
    //先进行赋值在移动指针 
    e = S.data[S.top];
    --(S.top);
    return 1;
}

//展示栈中的元素
void show(SqStack &S){
    int e;
    while(S.top>-1){
        pop(S,e);
        printf("%d    ",e);
    }
} 
//持续往栈中存放元素
void put(SqStack &S){
    initStack(S);  ///一定要初始化 
    int e;
    scanf("%d",&e);
    while(S.top<MaxSize&&e!=-1){
        push(S,e);
        printf("%d    ===\n ",S.top);
//        printf("输入成功\n");
        scanf("%d",&e);
    }
} 
int main(){
    SqStack S;
    put(S);
    show(S);
    return 0;
} 
 

 

转载于:https://www.cnblogs.com/nnyst/p/11104640.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值