栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

<数据结构> top指针指向栈顶元素的顺序栈实现(C语言)(第1种/共2种)

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

<数据结构> top指针指向栈顶元素的顺序栈实现(C语言)(第1种/共2种)

#include 
#include 
#include 
#define MaxSize 5

typedef struct{

   int data[MaxSize];
   int top;

}SqStack;

int InitStack(SqStack *S){
   S->top=-1;
   printf("该顺序栈已完成初始化nn");
   return 1;

}

int length(SqStack S){
   return (S.top+1);
}

int isEmpty(SqStack S){
   if(S.top==-1)
     return 1;
   else
     return 0;
}

int Push(SqStack *S,int e){
   if(S->top==MaxSize-1){
     printf("该顺序栈已满 本次入栈操作非法nn");
     return 0;
   }
   S->data[++S->top]=e;
   printf("本次入栈元素:%dnn",e);

   return 1;


}

int Pop(SqStack *S,int *e){
   if(S->top==-1){
      printf("该顺序栈为空 本次出栈操作非法nn");
      return 0;

   }
   (*e)=S->data[S->top--];
   printf("本次出栈元素:%dnn",*e);
   return 1;



}

int GetTop(SqStack S){
   if(S.top==-1){
     printf("该顺序栈为空 本次求栈顶操作非法nn");
     return 0;
   }
    printf("顺序栈当前栈顶元素为:%dnn",S.data[S.top]);
    return (S.data[S.top]);

}
int main()
{
    SqStack S;
    int discard;
    InitStack(&S);
    if(isEmpty(S))
        printf("当前该顺序栈为空nn");
    else
        printf("当前该顺序栈的长度为%dnn",length(S));

    Push(&S,9);
    Push(&S,5);
    Push(&S,2);
    Push(&S,6);
    Push(&S,5);
    Push(&S,0);

    if(isEmpty(S))
        printf("当前该顺序栈为空nn");
    else
        printf("当前该顺序栈的长度为%dnn",length(S));

    Pop(&S,&discard);
    if(isEmpty(S))
        printf("当前该顺序栈为空nn");
    else
        printf("当前该顺序栈的长度为%dnn",length(S));
    GetTop(S);

    return 0;

}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/997888.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号