堆棧單鏈表實現_第1頁
堆棧單鏈表實現_第2頁
堆棧單鏈表實現_第3頁
堆棧單鏈表實現_第4頁
堆棧單鏈表實現_第5頁
全文預覽已結束

下載本文檔

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

文檔簡介

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. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論