系统运维

Java编程内功-数据结构与算法「栈(Stack)」

时间:2010-12-5 17:23:32  作者:人工智能   来源:数据库  查看:  评论:0
内容摘要:基本介绍1. 栈是一个先入后出(FILO First In Last Out)的有序列表2.栈是限制线性表中元素的插入和删除只能在线性表的同一端进行的一种特殊线性表.允许插入和删除的一端,为变化的一端

 基本介绍

1. 栈是编程一个先入后出(FILO First In Last Out)的有序列表

2.栈是限制线性表中元素的插入和删除只能在线性表的同一端进行的一种特殊线性表.允许插入和删除的一端,为变化的一端,称为栈顶(Top),另一端为固定的一端,称为栈底(Bottom).

3.根据栈的定义可知,最先放入栈中元素在栈底,最后放入的元素在栈顶,而删除元素刚好相反,最后放入的元素最先删除,最先放入的元素最后删除.

栈的应用场景

1.子程序的调用:在调往子程序前,会先将下个指令的地址存到栈中,直到子程序执行完后再将地址取出,以回到原来的程序.

2.处理递归调用:和子程序的调用类似,只是除了储存下一个指令的香港云服务器地址外,也将参数\区域变量等数据存入堆栈中.

3.表达式转换(中缀表达式转后缀表达式)与求值(实际解决).

4.二叉树的遍历.

5.图形的深度优先(depth-first)搜索算法.

栈结构实现案例

package com.structures.stack; import java.util.Scanner; public class ArrayStackDemo {      public static void main(String[] args) {          ArrayStack stack = new ArrayStack(4);         String key = "";         boolean loop = true;         Scanner scanner = new Scanner(System.in);         while (loop) {              System.out.println("show:显示栈");             System.out.println("exit:退出程序");             System.out.println("push:添加数据到栈(入栈)");             System.out.println("pop:从栈取出数据(出栈)");             key = scanner.next();             switch (key) {                  case "show":                     stack.list();                     break;                 case "push":                     System.out.println("请输入一个数");                     int value = scanner.nextInt();                     stack.push(value);                     break;                 case "pop":                     try {                          int res = stack.pop();                         System.out.println("出栈的数据%d\n" + res);                     } catch (Exception e) {                          System.out.println(e.getMessage());                     }                     break;                 case "exit":                     scanner.close();                     loop = false;                     break;             }         }         System.out.println("程序退出");     } } //定义一个类表示栈结构 class ArrayStack {      private int maxSize;//栈的大小     private int[] stack;//数组模拟栈,数据就放入该数组     private int top = -1;//top表示栈顶,初始化-1     public ArrayStack(int maxSize) {          this.maxSize = maxSize;         stack = new int[this.maxSize];     }     //判断是否栈满     public boolean isFull() {          return top == maxSize - 1;     }     //判断是否栈空     public boolean isEmpty() {          return top == -1;     }     //入栈     public void push(int value) {          if (isFull()) {              System.out.println("栈满");             return;         }         top++;         stack[top] = value;     }     //出栈     public int pop() {          if (isEmpty()) {              throw new RuntimeException("栈空");         }         int value = stack[top];         top--;         return value;     }     //显示栈的情况[遍历栈]     public void list() {          if (isEmpty()) {              System.out.println("栈空,没有数据~~");             return;         }         for (int i = top; i >= 0; i--) {              System.out.printf("stack[%d]=%d\n", i, stack[i]);         }     } } 

 使用栈完成表达式的计算(中缀表达式)

准备两个栈,数字栈和符号栈.

1.通过一个index值(索引),来遍历表达式.

2.如果发现是一个数字就直接入数字栈.

3.如果是一个符号,分情况考虑如果当前符号栈为空,就直接入站.如果符号栈有操作符,就进行比较.

如果当前操作符的优先级小于或者等于栈中的操作符,就需要从数栈中pop两个数,再从符号栈中pop出一个字符,进行运算,将得到结果入数栈,然后当前操作符入符号栈. 如果当前的操作符的优先级大于栈中的操作符,就直接入栈.

4.当表达式扫描完毕,就顺序地从数栈和符号栈中pop出相应的数和符号,并运行.

5.最后在数字栈只有一个数字,就是表达式的结果.

package com.structures.stack; public class Calculator {      public static void main(String[] args) {          //表达式         String expression = "700+2*6-2";         //数栈         ArrayStack2 numStack = new ArrayStack2(10);         //符号栈         ArrayStack2 operStack = new ArrayStack2(10);         int index = 0;//用于扫描         int num1 = 0;         int num2 = 0;         int oper = 0;         int res = 0;         char ch =  ;//将每次扫描得到的高防服务器char保存到ch         String keepNum = "";//用于拼接多位数         while (true) {              ch = expression.substring(index, index + 1).charAt(0);             //如果是运算符             if (operStack.isOper(ch)) {                  //如果为空                 if (operStack.isEmpty()) {                      operStack.push(ch);                 } else {                      if (operStack.priority(ch) <= operStack.priority(operStack.peek())) {                          num1 = numStack.pop();                         num2 = numStack.pop();                         oper = operStack.pop();                         res = numStack.cal(num1, num2, oper);                         //把运算的结果入数栈,当前符号入符号栈                         numStack.push(res);                         operStack.push(ch);                     } else {                          operStack.push(ch);                     }                 }             } else {                  //当处理多位数时,不能立即入栈.                 keepNum += ch;                 //如果ch是expression的最后一位                 if (index == expression.length() - 1) {                      numStack.push(Integer.parseInt(keepNum));                 } else {                      if (operStack.isOper(expression.substring(index + 1, index + 2).charAt(0))) {                          numStack.push(Integer.parseInt(keepNum));                         keepNum = "";                     }                 }             }             index++;             //扫遍到最后就退出             if (index >= expression.length()) {                  break;             }         }         while (true) {              if (operStack.isEmpty()) {                  break;             }             num1 = numStack.pop();             num2 = numStack.pop();             oper = operStack.pop();             res = numStack.cal(num1, num2, oper);             numStack.push(res);         }         System.out.printf("表达式%s=%d\n", expression, numStack.pop());     } } class ArrayStack2 {      private int maxSize;//栈的大小     private int[] stack;//数组模拟栈,数据就放入该数组     private int top = -1;//top表示栈顶,初始化-1     public ArrayStack2(int maxSize) {          this.maxSize = maxSize;         stack = new int[this.maxSize];     }     //返回当前栈顶的值,不是pop     public int peek() {          return stack[top];     }     //判断是否栈满     public boolean isFull() {          return top == maxSize - 1;     }     //判断是否栈空     public boolean isEmpty() {          return top == -1;     }     //入栈     public void push(int value) {          if (isFull()) {              System.out.println("栈满");             return;         }         top++;         stack[top] = value;     }     //出栈     public int pop() {          if (isEmpty()) {              throw new RuntimeException("栈空");         }         int value = stack[top];         top--;         return value;     }     //显示栈的情况[遍历栈]     public void list() {          if (isEmpty()) {              System.out.println("栈空,没有数据~~");             return;         }         for (int i = top; i >= 0; i--) {              System.out.printf("stack[%d]=%d\n", i, stack[i]);         }     }     //返回运算符的优先级,数字越大则优先级越高.     //假定目前操作符只有 +  - * /     public int priority(int oper) {          if (oper == * || oper == /) {              return 1;         } else if (oper == + || oper == -) {              return 0;         } else {              return -1;         }     }     //判断是不是一个运算符     public boolean isOper(char val) {          return val == + || val == - || val == * || val == /;     }     //计算方法     public int cal(int num1, int num2, int oper) {          int res = 0;         switch (oper) {              case +:                 res = num1 + num2;                 break;             case -:                 res = num2 - num1;//注意顺序                 break;             case *:                 res = num1 * num2;                 break;             case /:                 res = num2 / num1;//注意顺序                 break;         }         return res;     } } 

 【编辑推荐】

凉凉,老板叫我开发一个简单的内功工作流引擎... Windows10将迎来翻天覆地变化!今年第一个更新来了 2021年将迎来六大网络安全趋势 Windows 10近年最大改进!数据算法Windows10 21H2新特性抢先看 小爱同学竟然推出了PC版?结构带你体验电脑版小爱
最近更新
copyright © 2025 powered by 益强资讯全景  滇ICP备2023006006号-31sitemap