專案 5 字尾表示式 (補)

2021-07-23 11:44:29 字數 2205 閱讀 6727

/* 

*all right reserved. 

*檔名稱:test.cpp 

*完成日期:2023年10月8日 

*版本號:v1.2.9

* *  問題描述:字尾表示式

*程式輸入:算術表示式。 

*程式輸出:加上字尾的式子。 

*/ head.h

#ifndef sqstack_h_included

#define sqstack_h_included

#include#define maxsize 100

typedef char elemtype;

typedef struct

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); //輸出棧

bool ismatch(char *st);

int leftpri(char op); //求左運算子op的優先順序

int rightpri(char op); //求右運算子op的優先順序

bool inop(char ch); //判斷ch是否為運算子

int precede(char op1,char op2); //op1和op2運算子優先順序的比較結果

void trans(char *exp,char postexp);

//將算術表示式exp轉換成字尾表示式postexp

#endif // sqstack_h_included

c.cpp

#include #include #include "head.h"

#define maxop 7

struct //設定運算子優先順序

lpri= ,,,,,,},

rpri= ,,,,,,};

//初始化棧

void initstack(sqstack *&s)

//銷毀棧

void destroystack(sqstack *&s)

//返回棧長度

int stacklength(sqstack *s)

//判斷棧是否為空

bool stackempty(sqstack *s)

//進棧

bool push(sqstack *&s,elemtype e)

//出棧

bool pop(sqstack *&s,elemtype &e)

//取棧頂元素

bool gettop(sqstack *s,elemtype &e)

//輸出棧中元素

void dispstack(sqstack *s) //輸出棧

int leftpri(char op) //求左運算子op的優先順序

postexp[i++]='#'; //用#標識乙個數值串結束

}else //為運算子的情況

}} //while (*exp!='\0')

pop(opstack, ch);

while (ch!='=')

//此時exp掃瞄完畢,退棧到'='為止

postexp[i]='\0'; //給postexp表示式新增結束標識

總結:認識棧,了解棧。

2015 10 16 專案5 字尾表示式

2015 10 16 專案5 字尾表示式 1.問題及 利用sqstack.h中棧的基本運算,實現將乙個中綴表示式轉換為對應的字尾表示式的演算法。例如,輸入 56 20 4 2 輸出字尾表示式 56 20 4 2 要求在數字後加 基於棧結構,將中綴表示式轉換為字尾表示式的演算法步驟是 初始化運算子棧o...

第5周專案5 字尾表示式

問題及 檔名稱 5.cpp 作 者 王修文 完成日期 2016年9月28日 版 本 號 v1.0 問題描述 利用sqstack.h中棧的基本運算,實現將乙個中綴表示式轉換為對應的字尾表達 式的演算法。例如,輸入 56 20 4 2 輸出字尾表示式 56 20 4 2 要求 在數字後加 輸入描述 字首...

第5周專案5 字尾表示式

問題及 煙台大學計算機與控制工程學院 作 者 馬賽 完成日期 2016年9月29日 問題描述 利用sqstack.h中棧的基本運算,實現將乙個中綴表示式轉換為對應的字尾表示式的演算法。例如,輸入 56 20 4 2 輸出字尾表示式 56 20 4 2 要求在數字後加 1 sqstack.h ifnd...