




下載本文檔
版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、單鏈表實現堆棧如下:節點類:public class Node /節點類 public int element;public Node link;public Node( link=null;public Node(int newelement,Node newlink element=newelement;link=newlink;public void setElement(int newelement element=newelement;public int getElement(return element;public void setLink(Node newlinklink=n
2、ewlink;public Node getlink( return link;堆棧類:public class StackList /堆棧類Node head;Node top;int size;public StackList( head=top=new Node(;size=0;public void index(int positionthrows Exception /定位棧頂 if(position<0|position>size throw new Exception("參數錯誤!"top=head.link;int j=0;while(top!=
3、null&&j top=top.link;j+; public void push(int numberthrows Exception /壓棧 top.setLink(new Node(number,top.link;top=top.link;size+;public int getTop(throws Exception /取棧頂 if(size=0throw new Exception("堆棧已空!"return top.getElement(; public int pop(throws Exception /出棧if(size=0throw new
4、 Exception("堆棧已空!"index(size-1;int temp=top.getElement(;size-;return temp;public boolean notEmpty( /非空否if(size>0return true;return false;public int getData(int jthrows Exceptionif(j < -1 | j > size - 1throw new Exception("參數錯誤!"index(j;return top.getElement(;測試程序:import
5、java.io.*;public class TestStackListpublic static void main(String argsthrows IOExceptiontryBufferedReader Inputnumber=new BufferedReader(new InputStreamReader(System.in;String numberstring;StackList list=new StackList(;System.out.print("請輸入要建立的堆棧區的大小:"numberstring=Inputnumber.readLine(;in
6、t number1=Integer.parseInt(numberstring;System.out.println("請輸入要入棧的數據:"for(int i=0;i numberstring=Inputnumber.readLine(;int number2=Integer.parseInt(numberstring;list.push(number2;System.out.println(" 堆棧中的各數據為:"for(int i=0;i System.out.print(list.getData(i+" "System.out.println(;System.out.println("取棧頂元素為:"+"n"+list.getTop(;System.out.println("堆棧中出棧數據為:"if(list.notEmpty( for(int i=0
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 質量工程師考試技術要求試題及答案
- 智慧交通關鍵技術創新測試題試題及答案
- 焊接工程師資格考試歷史與現狀的反思試題及答案
- 二零二五合作社股權轉讓合同書
- 餐廳轉讓合同書協議書
- 解析焊接工程師資格考試的難點試題及答案
- 二零二五版店鋪經營權轉讓合同書
- 二零二五全新起訴變更離婚協議書
- 家庭裝修質保簡單的合同書二零二五年
- 工程心理學與設計創新試題及答案
- 天車安全教育培訓課件
- 設備采購方案投標文件(技術方案)
- 2025年山東省春季高考模擬考試數學試卷試題(含答案詳解)
- 2025年人博會貴州出版集團有限公司招聘筆試參考題庫含答案解析
- 國家醫保局-2024年醫保支付方式改革培訓班-DRG.DIP2.0版培訓
- 智障個別化教育計劃案例(3篇)
- 2025屆新高考語文熱點沖刺復習:新高考作文教學及備考策略
- (高清版)DB3204∕T 1024-2021 污水排入城鎮污水管網排放口設置技術規范
- 海南省海口市(2024年-2025年小學六年級語文)部編版期中考試(下學期)試卷及答案
- 旅游消費者行為學課件:社會群體與旅游消費者行為
- 《材料成形測試技術》課件-第7章 軋制過程在線檢測
評論
0/150
提交評論