第五周 專案五 字尾表示式

2021-07-23 07:09:46 字數 2038 閱讀 6732

/*       

檔名稱:第5周專案3 - 字尾表示式.cpp

作 者:滕健

完成日期:2023年9月29日

問題描述:利用sqstack.h中棧的基本運算,實現將乙個中綴表示式轉換為對應的字尾表達

式的演算法。例如,輸入(56-20)/(4+2),輸出字尾表示式::56#20#-4#2#+/要求

在數字後加#

輸入描述:字首表示式

程式輸出:中綴表示式 字尾表示式

*/

//(1)標頭檔案:

#include#includetypedef char elemtype;

typedef struct linknode

listack; //鏈棧型別定義

void initstack(listack *&s); //初始化棧

void destroystack(listack *&s); //銷毀棧

int stacklength(listack *s); //返回棧長度

bool stackempty(listack *s); //判斷棧是否為空

void push(listack *&s,elemtype e); //入棧

bool pop(listack *&s,elemtype &e); //出棧

bool gettop(listack *s,elemtype &e); //取棧頂元素

void dispstack(listack *s); //輸出棧中元素

//(2)原始檔:

#include"head.h"

void initstack(listack *&s)

void destroystack(listack *&s)

int stacklength(listack *s)

return i;

} bool stackempty(listack *s)

else return false;

} void push(listack *&s,elemtype e)

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

l=s->next;

e=l->data;

s->next=l->next;

free(l);

return true;

} bool gettop(listack *s,elemtype &e)

e=s->next->data;

return true;

} void dispstack(listack *s)

printf("\n");

} //(3)main函式:

#include "sqstack.h"

#define maxop 7

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

lpri= ,,,,,,},

rpri= ,,,,,,};

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

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

} else //為運算子的情況

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

pop(opstack, ch);

while (ch!='=')

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

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

destroystack(opstack);

}

int main()

執行結果:

第五周 專案五 字尾表示式

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

第五周 專案五 字尾表示式

問題及描述 煙台大學計算機與控制工程學院 完成日期 2016年9月29號 問題描述 利用sqstack.h中棧的基本運算,實現將乙個中綴表示式轉換為對應的字尾表達 式的演算法。例如,輸入 56 20 4 2 輸出字尾表示式 56 20 4 2 要求 在數字後加 標頭檔案及功能函式詳見 第五周 專案一...

第五周專案五 字尾表示式

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