數(shù)據(jù)結構實驗3:棧子系統(tǒng)_第1頁
數(shù)據(jù)結構實驗3:棧子系統(tǒng)_第2頁
數(shù)據(jù)結構實驗3:棧子系統(tǒng)_第3頁
免費預覽已結束,剩余1頁可下載查看

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1、.驗證性實驗3:棧子系統(tǒng)班級學號 20 施程程1實驗目的1掌握棧的特點及其描述方法。2用鏈式存儲構造實現(xiàn)一個棧。3掌握建棧的各種根本操作。4掌握棧的幾個典型應用的算法。2實驗內(nèi)容1設計一個字符型的鏈棧。2編寫進棧、出棧、顯示棧中全部元素的程序。3編寫一個把十進制整數(shù)轉(zhuǎn)換成二進制數(shù)的應用程序。4編寫一個把中綴表達式轉(zhuǎn)換成后綴表達式逆波蘭式的應用程序。5設計一個選擇式菜單,以菜單方式選擇上述操作。棧 子 系 統(tǒng)* 1-進棧 * 2-出棧 * 3-顯示 * 4-數(shù)制轉(zhuǎn)換 * 5-逆波蘭式 * 0-返回 *請選擇菜單號0-5:3實驗程序附zhan.cpp*include *include *defin

2、e STACKMAX 100typedef struct stacknodeint data;struct stacknode *next;StackNode;typedef struct StackNode *top;LinkStack;void Push (LinkStack &s,int x)StackNode *p=new StackNode;p-data=x;p-next=s.top;s.top=p;int Pop(LinkStack &s,int &x)StackNode *p;if(s.top!=NULL)p=s.top;x=p-data;s.top=p-next;delete

3、p;return 1;else return 0;void ShowStack (LinkStack s)StackNode *p=s.top;if (p=NULL)printf(ntt棧為空。 );else printf(ntt棧元素為: );while (p!=NULL)printf(%6d,p-data);p=p-next;printf(n);void Conversion(int n)LinkStack s;int x;s.top=NULL;dox=n%2;n=n/2;Push(s,x);while(n);printf(ntt轉(zhuǎn)換后的二進制數(shù)值: );while (Pop(s,x)pr

4、intf(%d,x);printf(n);void Suffix()char strSTACKMAX;char stackSTACKMAX;char expSTACKMAX;char ch;int sum,i,j,t,top=0;printf(ntt輸入算術表達式(算術符只能包含+,-,*,/),以*完畢:ntt);fflush(stdin);i=0;doi+;scanf(%c,&stri);while(stri!=*& i!=STACKMAX);sum=i;t=1;i=1;ch=stri;i+;while (ch!=*)switch (ch)case (:top+;stacktop=ch;b

5、reak;case ):while (stacktop!=()expt+=stacktop-;expt+=,;top-;break;case +:case -:while (top!=0 & stacktop!=()expt+=stacktop-;expt+=,;stack+top=ch;break;case *:case /:while(stacktop=* | stacktop=/)expt+=stacktop-;expt+=,;stack+top=ch;break;case :break;default:while (ch=0&ch=z)expt+=ch;ch=stri+;i-;expt

6、+=,;ch=stri+;while (top!=0)expt+=stacktop-;if(top!=0)expt+=,;printf(ntt輸入的中綴表達式是: );for(j=1;jsum;j+)printf(%c,strj);printf(nntt后綴表達式是: );for(j=1;jt;j+)printf(%c,expj);printf(n);void main()LinkStack s;int i=1,j=1,val,n;char choice;s.top=NULL;while(1)printf(n);printf(ntt 棧子系統(tǒng) );printf(ntt*);printf(ntt

7、* 1-進 棧 *);printf(ntt* 2-出 棧 *);printf(ntt* 3-顯 示 *);printf(ntt* 4-數(shù)制轉(zhuǎn)換 *);printf(ntt* 5-逆波蘭式 *);printf(ntt* 0-退出程序 *);printf(ntt*);printf(ntt 請選擇菜單號(0-5): );fflush(stdin);choice=getchar();switch (choice)case 1:while (1)printf(ntt輸入一個整數(shù)(0表示完畢)并按回車: );scanf(%d,&val);if (val!=0)Push (s,val);else break

8、;break;case 2:if (Pop(s,val)printf(ntt出棧元素為: %6d,val);elseprintf(ntt棧為空,沒有元素可以出棧! n);break;case 3:ShowStack(s);break;case 4:printf(ntt請輸入一個十進制正整數(shù): );scanf(%d,&n);Conversion(n);break;case 5:Suffix();break;case 0:exit(0);default:printf(ntt輸入的菜單錯誤,請重新輸入! n);4. 運行結果5實驗小結本章主要要求我們掌握棧的特點及其描述方法,就是進棧、出棧、數(shù)字轉(zhuǎn)換、逆波蘭式等的程序是怎樣的。這個實驗要求設計的是一個字符型鏈棧,其中要求有進棧、出棧、顯示棧中全部元素、把十進制轉(zhuǎn)換成二進制以及中綴表達式轉(zhuǎn)換成后綴表達式的程序。根據(jù)書上所給的參考程序,我自己先看了一遍,根本上能看懂,哪段程序是進棧的程序,哪段程序是表示出棧,顯示棧中元

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論