zoukankan      html  css  js  c++  java
  • 顺序栈的初始化,建立,插入,查找,删除。

    ---

    顺序栈:普通数组保存方式,栈顶(max-1)为满,栈底(-1)为空;

    ////////////////////////////////////////////
    //顺序栈的初始化,建立,插入,查找,删除。//
    //Author:Wang Yong                        //    
    //Date: 2010.8.19                         //
    ////////////////////////////////////////////
     
     
    #include <stdio.h>
    #include <stdlib.h>
     
    #define  MAX 100                //定义最大栈容量
     
    typedef int ElemType;
     
    ///////////////////////////////////////////
     
    //定义栈类型 
    typedef struct
    {
        ElemType data[MAX];
        int top;
    }SeqStack;
     
    ///////////////////////////////////////////
     
    //栈的初始化
     
    SeqStack SeqStackInit()
    {
        SeqStack s;
        s.top = -1;
        return s;
    }
     
    ///////////////////////////////////////////
     
    //判断栈空的算法
     
    int SeqStackIsEmpty(SeqStack s)
    {
        if(s.top == -1)
            return 0;
        else
            return 1;
    }
     
    ///////////////////////////////////////////
     
    //进栈的算法
     
    void SeqStackPush(SeqStack &s,ElemType x)
    {
        if(s.top == MAX-1)              //进栈的时候必须判断是否栈满 
            printf("stack full
    "); 
        s.top++;
        s.data[s.top] = x;
    }
     
    //////////////////////////////////////////
     
    //出栈的算法
     
    ElemType SeqStackPop(SeqStack &s)
    {
        if(s.top == -1)             //出栈的时候必须判断是否栈空 
            printf("stack empty
    ");
        ElemType x;
        x = s.data[s.top];
        s.top--;
        return x;
    }
     
    //////////////////////////////////////
    int main()
    {
        SeqStack  stack;
        stack = SeqStackInit();
        printf("请输入进栈的元素:"); 
        ElemType x;
        while(scanf("%d",&x) != -1)
        {
            SeqStackPush(stack,x);  
        }
        printf("出栈的结果:"); 
        while(stack.top != -1)
        {
            printf("%d ",SeqStackPop(stack));
        }
        printf("
    ");
        return 0;
    } 

    ---

  • 相关阅读:
    NGINX下配置404错误页面的方法分享
    mysql 统计
    nginx日志中访问最多的100个ip及访问次数
    ubuntu下完全安装mcrypt
    ngxtop:在命令行实时监控 Nginx 的神器
    AngularJs 返回上一页
    nginx 报错 upstream timed out (110: Connection timed out)解决方案
    IAP 破解漏洞验证
    AceAdmin-v1.4.0 下载
    TP QQ 微信 微博登录
  • 原文地址:https://www.cnblogs.com/Ph-one/p/6889683.html
Copyright © 2011-2022 走看看