当前位置:   article > 正文

Java | 数据结构 - 栈和队列的构建及其基本操作(代码含注释,超详细)_构建栈的代码

构建栈的代码

一、栈的构建及其基本操作

是一种后进先出或先进后出的线性表,其插入和删除操作只允许在表的尾端进行。

栈中允许进行插入和删除操作的一端称为栈顶(top),另一端称为栈底(bottom)。

通常,人们将栈的插入操作称为入栈(push),而将删除操作称为出栈(pop)。

1. 顺序栈(使用数组实现)

顺序栈的存储结构示意图

  1. //顺序栈
  2. public class SqStack {
  3. private int[] stackElem; //对象数组
  4. private int top; //在非空栈中,top始终指向栈顶元素的下一个存储位置;当栈为空时,top=0
  5. public static void main(String[] args) throws Exception {
  6. //测试
  7. SqStack st = new SqStack(5); //构建一个长度为5的顺序栈
  8. System.out.println(st.isEmpty()); //判空
  9. System.out.println(st.length()); //返回栈的长度
  10. st.push(1); //入栈
  11. st.push(2);
  12. st.push(3);
  13. st.display(); //打印
  14. System.out.println();
  15. st.pop(); //出栈
  16. st.display();
  17. System.out.println(); //打印
  18. System.out.println(st.isEmpty());
  19. System.out.println(st.length());
  20. }
  21. public SqStack(int maxSize) {
  22. top = 0; //初始化
  23. stackElem = new int[maxSize]; //为栈分配maxSize个存储单元
  24. }
  25. //1. 置栈空
  26. public void clear() {
  27. top = 0;
  28. }
  29. //2. 判断栈是否为空
  30. public boolean isEmpty() {
  31. return top == 0;
  32. }
  33. //3. 求栈中数据元素个数
  34. public int length() {
  35. return top;
  36. }
  37. //4. 取栈顶元素
  38. public int peek() {
  39. if(!isEmpty())
  40. return stackElem[top-1];
  41. else
  42. return -1;
  43. }
  44. //5. 入栈
  45. public void push(int x) throws Exception{
  46. if(top == stackElem.length) //判断是否栈满
  47. throw new Exception("栈已满"); //抛出异常
  48. else
  49. stackElem[top++] = x; //先将新的数据元素x压入栈顶,再top增加1
  50. }
  51. //6. 出栈
  52. public int pop(){
  53. if(isEmpty()) //判断栈是否为空
  54. return -1;
  55. else
  56. return stackElem[--top];
  57. }
  58. //7. 输出栈中所有元素
  59. public void display() {
  60. for(int i=top-1;i>=0;i--) {
  61. System.out.print(stackElem[i] + " "); //输出
  62. }
  63. }
  64. }

【注:

top的定义方式有两种——

一种是将其设置为指向栈顶元素存储位置的下一个存储单元的位置,则空栈时,top=0;

另一种是将top设置为指向栈顶元素的存储位置,则空栈时,top=-1。

再次采用前一种方式来表示栈顶。】

2. 链栈(使用不带头结点的单链表实现)

链栈的存储结构示意图

  1. //使用泛型构造结点类
  2. public class Node<T> {
  3. public T data; //存放结点值
  4. public Node<T> next; //后继结点的引用
  5. //无参时的构造函数
  6. public Node(){
  7. this(null,null);
  8. }
  9. //带一个参数时的构造函数
  10. public Node(T data){
  11. this(data,null);
  12. }
  13. //带两个参数时的构造函数
  14. public Node(T data,Node<T> next)
  15. {
  16. this.data=data;
  17. this.next=next;
  18. }
  19. }
  1. //链栈
  2. public class LinkStack<T> {
  3. private Node<T> top; //栈顶元素的应用
  4. public static void main(String[] args) throws Exception {
  5. //测试
  6. LinkStack<Integer> ls = new LinkStack<Integer>();
  7. System.out.println(ls.isEmpty()); //判空
  8. System.out.println(ls.length()); //返回栈的长度
  9. ls.push(1); //入栈
  10. ls.push(2);
  11. ls.push(3);
  12. ls.display(); //打印
  13. System.out.println();
  14. ls.pop(); //出栈
  15. ls.display();
  16. System.out.println(); //打印
  17. System.out.println(ls.isEmpty());
  18. System.out.println(ls.length());
  19. }
  20. //1. 置栈空
  21. public void clear() {
  22. top = null;
  23. }
  24. //2. 判断栈是否为空
  25. public boolean isEmpty() {
  26. return top == null;
  27. }
  28. //3. 求栈中数据元素个数
  29. public int length() {
  30. Node<T> p = top; //初始化,p指向栈顶元素
  31. int length = 0; //length为长度计数器
  32. while(p != null) { //从栈顶元素开始向后查找,直到p指向空
  33. p = p.next; //p指针后移
  34. ++length; //长度加1
  35. }
  36. return length; //返回长度
  37. }
  38. //4. 取栈顶元素
  39. public T peek() {
  40. if(!isEmpty()) //栈非空
  41. return top.data; //返回栈顶元素
  42. else
  43. return null;
  44. }
  45. //5. 入栈
  46. public void push(T x) throws Exception{
  47. Node<T> p = new Node<T>(x); //构造一个新结点
  48. p.next = top;
  49. top = p; //新结点成为当前的栈顶元素
  50. }
  51. //6. 出栈
  52. public T pop(){
  53. if(isEmpty())
  54. return null;
  55. else {
  56. Node<T> p = top; //p指向被删结点(即栈顶元素)
  57. top = top.next; //修改链指针,使栈顶结点从链栈中移去
  58. return p.data; //返回被删结点数据域的值
  59. }
  60. }
  61. //7. 输出栈中所有元素
  62. public void display() {
  63. Node<T> p = top; //初始化,p指向栈顶元素
  64. while(p != null) { //输出所有非空结点的数据元素值
  65. System.out.print(p.data.toString() + " ");
  66. p = p.next; //p指针后移
  67. }
  68. }
  69. }

二、队列的构建及其基本操作

队列是一种先进先出或后进后出的线性表,只允许在表尾插入数据,在表头删除数据。

允许进行插入的一端称为是队尾(rear),允许进行删除的一端称为是队首(front)。

队列的插入操作通常称为入队操作(push),而删除操作通常称为出队操作(pop)。

1. 顺序队列(使用数组实现)

 顺序队列的存储结构示意图

  1. //循环顺序队列
  2. public class SqQueue {
  3. private int[] queueElem; //队列存储空间
  4. private int front; //队首的引用,若队列不空,指向队首元素
  5. private int rear; //队尾的引用,若队列不空,指向对队尾元素的下一个存储位置
  6. public static void main(String[] args) throws Exception{
  7. //测试
  8. SqQueue sq = new SqQueue(5);
  9. sq.display();
  10. sq.offer(1); //入队
  11. sq.offer(2);
  12. sq.offer(3);
  13. sq.display(); //打印
  14. System.out.println();
  15. System.out.println(sq.poll()); //出队
  16. sq.display(); //打印
  17. System.out.println();
  18. System.out.println(sq.isEmpty()); //判空
  19. System.out.println(sq.length()); //长度
  20. }
  21. //构造函数
  22. public SqQueue(int maxSize) {
  23. front = rear = 0; //队首、队尾初始化为0
  24. queueElem = new int[maxSize]; //为队列分配maxSize个存储单元
  25. }
  26. //1. 队列置空
  27. public void clear() {
  28. front = rear = 0;
  29. }
  30. //2. 判断队列是否为空
  31. public boolean isEmpty() {
  32. return front == rear;
  33. }
  34. //3. 求队列的长度
  35. public int length() {
  36. return (rear-front + queueElem.length) % queueElem.length;
  37. }
  38. //4. 读取队首元素
  39. public int peek() {
  40. if(front == rear) //队列为空
  41. return -1;
  42. else
  43. return queueElem[front]; //返回队首元素
  44. }
  45. //5. 入队
  46. public void offer(int x) throws Exception{
  47. if((rear+1) % queueElem.length == front) //队列满
  48. throw new Exception("队列已满"); //抛出异常
  49. else {
  50. queueElem[rear] = x; //x存入rear所指的数组存储位置中,使其成为新的队尾元素
  51. rear = (rear+1) % queueElem.length; //修改队尾指针
  52. }
  53. }
  54. //6. 出队
  55. public int poll() {
  56. if(front == rear) //队列空
  57. return -1;
  58. else {
  59. int t = queueElem[front];
  60. front = (front+1) % queueElem.length; //修改队首指针
  61. return t; //返回队首元素
  62. }
  63. }
  64. //7. 输出队列中的所有数据元素(从队首到队尾)
  65. public void display() {
  66. if(!isEmpty()) {
  67. for(int i=front;i!=rear;i=(i+1)%queueElem.length)
  68. System.out.print(queueElem[i] + " ");
  69. }else {
  70. System.out.println("队列为空");
  71. }
  72. }
  73. }

【注:

顺序队列会因数组下标越界而引起“假溢出”,故在此将顺序队列所使用的存储空间看成是一个逻辑上首尾相连的循环队列。】

2. 链队列(使用不带头结点的单链表实现)

 链队列的存储结构示意图

  1. //链队列
  2. public class LinkQueue<T> {
  3. private Node<T> front; //队首指针
  4. private Node<T> rear; //队尾指针
  5. public static void main(String[] args) throws Exception{
  6. //测试
  7. LinkQueue<Integer> lq = new LinkQueue<Integer>();
  8. lq.display();
  9. lq.offer(1); //入队
  10. lq.offer(2);
  11. lq.offer(3);
  12. lq.display(); //打印
  13. System.out.println();
  14. System.out.println(lq.poll()); //出队
  15. lq.display(); //打印
  16. System.out.println();
  17. System.out.println(lq.isEmpty()); //判空
  18. System.out.println(lq.length()); //长度
  19. }
  20. //构造函数
  21. public LinkQueue() {
  22. front = rear = null;
  23. }
  24. //1. 队列置空
  25. public void clear() {
  26. front = rear = null;
  27. }
  28. //2. 判断队列是否为空
  29. public boolean isEmpty() {
  30. return front == null;
  31. }
  32. //3. 求队列的长度
  33. public int length() {
  34. Node<T> p = front; //p指针指向队首元素
  35. int length = 0; //计数器
  36. while(p != null) { //只要p不为空
  37. p = p.next; //指针后移
  38. ++length; //计数器+1
  39. }
  40. return length; //返回长度
  41. }
  42. //4. 读取队首元素
  43. public T peek() {
  44. if(front != null) //队列不为空
  45. return front.data; //返回队首结点的数据域值
  46. else
  47. return null;
  48. }
  49. //5. 入队
  50. public void offer(T x) throws Exception{
  51. Node<T> p = new Node<T>(x); //初始化新结点
  52. if(front != null) { //队列非空
  53. rear.next = p;
  54. rear = p; //修改队尾的位置
  55. }else
  56. front = rear = p;
  57. }
  58. //6. 出队
  59. public T poll() {
  60. if(front != null) { //队列非空
  61. Node<T> p = front; //p指向队首结点
  62. front = front.next; //队首结点出列
  63. if(p == rear) //若被删除的结点是队尾结点时
  64. rear = null;
  65. return p.data; //返回队首结点的数据域值
  66. }
  67. else
  68. return null;
  69. }
  70. //7. 输出队列中的所有数据元素(从队首到队尾)
  71. public void display() {
  72. if(!isEmpty()) {
  73. Node<T> p = front;
  74. while(p != null) {
  75. System.out.print(p.data.toString() + " ");
  76. p = p.next;
  77. }
  78. }else {
  79. System.out.println("队列为空");
  80. }
  81. }
  82. }

三、比较栈和队列

1. 栈和队列的相同点

  • 都是线性结构,即数据元素之间具有“一对一”的逻辑关系;
  • 插入操作都是限制在表尾进行;
  • 都可在顺序存储结构和链式存储结构上实现
  • 在时间代价上,插入和删除操作都需常数时间;在空间代价上,情况也相同;
  • 多链栈和多链队列的管理模式可以相同。

2. 栈对队列的不同点

  • 删除数据的元素操作位置不同;
  • 两者的应用场合不同;
  • 顺序栈可实现多栈空间共享,而顺序队列则不同。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/581688
推荐阅读
相关标签
  

闽ICP备14008679号