堆栈单链表实现_第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

提交评论