【第五周项目5-后缀表达式】

问题及代码:

/*
 * Copyright (c) 2016, 烟台大学计算机与控制工程学院
 * All rights reserved.
 * 文件名称:Cube007.cpp
 * 作    者:刘小楠
 * 完成日期:2016年9月30日
 *
 * 问题描述:实现将一个中缀表达式转换为对应的后缀表达式
 * 输入描述:无
 * 输出描述:转换结果
 */

sqstack.h

#ifndef SQSTACK_H_INCLUDED
#define SQSTACK_H_INCLUDED

#define MaxSize 100
typedef char ElemType;
typedef struct
{
    ElemType data[MaxSize];
    int top;                //栈指针
} SqStack;                  //顺序栈类型定义

void InitStack(SqStack *&s);    //初始化栈
void DestroyStack(SqStack *&s);  //销毁栈
bool StackEmpty(SqStack *s);     //栈是否为空
int StackLength(SqStack *s);  //返回栈中元素个数——栈长度
bool Push(SqStack *&s,ElemType e); //入栈
bool Pop(SqStack *&s,ElemType &e); //出栈
bool GetTop(SqStack *s,ElemType &e); //取栈顶数据元素
void DispStack(SqStack *s);  //输出栈

#endif // SQSTACK_H_INCLUDED

sqstack.cpp

#include 
#include 
#include "sqstack.h"

void InitStack(SqStack *&s)
{
    s=(SqStack *)malloc(sizeof(SqStack));
    s->top=-1;
}
void DestroyStack(SqStack *&s)
{
    free(s);
}
int StackLength(SqStack *s)  //返回栈中元素个数——栈长度
{
    return(s->top+1);
}
bool StackEmpty(SqStack *s)
{
    return(s->top==-1);
}
bool Push(SqStack *&s,ElemType e)
{
    if (s->top==MaxSize-1)    //栈满的情况,即栈上溢出
        return false;
    s->top++;
    s->data[s->top]=e;
    return true;
}
bool Pop(SqStack *&s,ElemType &e)
{
    if (s->top==-1)     //栈为空的情况,即栈下溢出
        return false;
    e=s->data[s->top];
    s->top--;
    return true;
}
bool GetTop(SqStack *s,ElemType &e)
{
    if (s->top==-1)         //栈为空的情况,即栈下溢出
        return false;
    e=s->data[s->top];
    return true;
}

void DispStack(SqStack *s)  //输出栈
{
    int i;
    for (i=s->top;i>=0;i--)
        printf("%c ",s->data[i]);
    printf("\n");
}

main.cpp

#include 
#include 
#include "sqstack.h"
#define MaxOp 7

struct  //设定运算符优先级
{
    char ch;   //运算符
    int pri;   //优先级
}
lpri[]= {{'=',0},{'(',1},{'*',5},{'/',5},{'+',3},{'-',3},{')',6}},
rpri[]= {{'=',0},{'(',6},{'*',4},{'/',4},{'+',2},{'-',2},{')',1}};

int leftpri(char op)    //求左运算符op的优先级
{
    int i;
    for (i=0; i='0' && *exp<='9') //判定为数字
            {
                postexp[i++]=*exp;
                exp++;
            }
            postexp[i++]='#';   //用#标识一个数值串结束
        }
        else    //为运算符的情况
        {
            GetTop(opstack, ch);   //取得栈顶的运算符
            switch(Precede(ch ,*exp))
            {
            case -1:           //栈顶运算符的优先级低:进栈
                Push(opstack, *exp);
                exp++;     //继续扫描其他字符
                break;
            case 0:        //只有括号满足这种情况
                Pop(opstack, ch);      //将(退栈
                exp++;     //继续扫描其他字符
                break;
            case 1:             //退栈并输出到postexp中
                postexp[i++]=ch;
                Pop(opstack, ch);
                break;
            }
        }

    } //while (*exp!='\0')
    Pop(opstack, ch);
    while (ch!='=')
        //此时exp扫描完毕,退栈到'='为止
    {
        postexp[i++]=ch;
        Pop(opstack, ch);
    }
    postexp[i]='\0';    //给postexp表达式添加结束标识
    DestroyStack(opstack);
}

int main()
{
    char exp[]="(56-20)/(4+2)"; //可将exp改为键盘输入
    char postexp[200];
    trans(exp,postexp);
    printf("中缀表达式:%s\n",exp);
    printf("后缀表达式:%s\n",postexp);
    return 0;
}

运行结果:

【第五周项目5-后缀表达式】_第1张图片


知识点总结:
栈的应用。


学习心得:
自己对知识点的应用思路不是清晰,只能多次解读老师的代码。

你可能感兴趣的:(数据结构,数据结构)