迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Java >

Java 中的后缀表达式

作者:迹忆客 最近更新:2023/08/02 浏览次数:

后缀表达式比中缀表达式更容易计算并且速度更快,因为我们不需要处理或遵循任何运算符优先级规则。 此外,后缀表达式不包含任何括号。

我们可以快速解决Java中的任何后缀表达式。 在本文中,我们将学习如何在 Java 中计算 Postfix 表达式,以及一些必要的示例和解释,以使该主题更容易。


评估 Java 中的后缀表达式

在开始之前,我们必须了解 Postfix 表达式是如何计算的。 让我们按照下表逐步解决 Postfix 算法:

Expression: 82*9+

Character | Stack       |  Explanation
-------------------------------------------
8           8             8 is an Operand and pushed to Stack
2           8 2           2 is an Operand and pushed to Stack 
*           16 (8*2)      * is an Operator. 
                          Poped 8 and 2 and multiply 
                          them. Lastly pushed the result to Stack 
9           16 9          9 is an Operand and pushed to Stack
+           25 (16+9)     + is an operator, 
                          Stack popped 12 and 9 and added them. 
                          Lastly pushed the result to Stack. 

Result: 25

我们已经学习了如何解决后缀算法的实际示例。 现在让我们使用 java 以编程方式解决上述表达式。 要解决 Java 中的后缀算法,您可以按照以下示例进行操作:

import java.util.Stack;
 
public class Postfix
{
    // Method to evaluate the postfix expression
    static int EvaluatePostfix(String EXP)
    {
        // Creating a stack
        Stack<Integer> EqStack=new Stack<>();

        // Scanning all the characters from the expression string
        for(int i=0;i<EXP.length();i++)
        {
            char ch=EXP.charAt(i);

            // If the character is an operator then push it to the stack
            if(Character.isDigit(ch))
            EqStack.push(ch - '0');

            // If the character is the operator, pop two elements for
            // the stack and performs the mathematical operation.
            else
            {
                int Val_1 = EqStack.pop(); // Getting the first element
                int Val_2 = EqStack.pop(); // Getting the second element

                switch(ch){
                    case '+':
                    EqStack.push(Val_2+Val_1); // Perform add operation
                    break;

                    case '-':
                    EqStack.push(Val_2- Val_1); // Perform subtraction operation
                    break;

                    case '/':
                    EqStack.push(Val_2/Val_1); // Perform divide operation
                    break;

                    case '*':
                    EqStack.push(Val_2*Val_1); // Perform multiply operation
                    break;
              }
            }
        }
        return EqStack.pop();
    }

    public static void main(String[] args)
    {
        String EXP="82*9+"; // The expression string
        System.out.println("Postfix evaluation result: "+EvaluatePostfix(EXP));
    }
}

我们已经解释了每行的用途。 运行上面的示例代码后,您将在控制台中看到以下输出。

Postfix evaluation result: 25

上一篇:Java 中的增量映射

下一篇:没有了

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Java 中的增量映射

发布时间:2023/08/02 浏览次数:100 分类:Java

在 Java 中使用 Map 或 HashMap 时,您可能需要增加该值。 在 Java 中,有很多方法可以增加 Map 的值。方法一:Java中Map值递增的通用方法

设置 java.util.Date 的时区

发布时间:2023/08/02 浏览次数:130 分类:Java

本文将介绍如何使用 Java 设置与日期关联的时区。 java.util.Date 没有时区。使用 ZonedDateTime 设置 java.util.Date 的时区

Java Date vs. LocalDate

发布时间:2023/08/02 浏览次数:146 分类:Java

本文介绍了 Java 中 Date 和 LocalDate 之间的区别。Java 日期与 LocalDate Date类来自Java util包,LocalDate类被添加到Java的Time包中。 这两个类都用于 Java 中的日期; 让我们看看 Java 中 Date 和 LocalDate 之间

Java 获取星期几

发布时间:2023/08/02 浏览次数:53 分类:Java

本文介绍如何使用 Java 获取星期几。Java 获取星期几 有时,在使用 UI 时需要获取一周中的某一天。 在Java中可以通过以下两种方法来实现:

在 Java 中使用 Zellers 同余查找星期几

发布时间:2023/08/02 浏览次数:92 分类:Java

本文展示了如何使用 Java 实现 Zeller 的同余法来查找星期几。 另外,我们将看一个带有逐行解释的示例,以使主题更容易。在 Java 中使用 Zeller 的同余式查找星期几

Java 中的无符号和有符号右移运算符

发布时间:2023/08/02 浏览次数:168 分类:Java

本文介绍 Java 中的有符号和无符号右移运算符。 它还通过代码示例演示了它们的用法。Java 中的无符号和有符号右移运算符 与其他编程语言不同,Java 支持两个右移运算符。

Java 中的菱形运算符

发布时间:2023/08/01 浏览次数:178 分类:Java

在本文中,我们将看到菱形运算符 的使用,并且我们将借助示例和解释来讨论该主题,以使该主题更容易。Java 中的菱形运算符

Java中的接口默认方法

发布时间:2023/08/01 浏览次数:125 分类:Java

本文介绍如何在Java中使用接口中的默认方法。Java中的接口默认方法 在接口只有抽象方法之前,Java 8 就引入了默认方法。 默认或防御方法允许开发人员在不破坏实现的情况下向接口添加新方法

Java 中的静态接口

发布时间:2023/08/01 浏览次数:73 分类:Java

请注意,当接口是嵌套的或另一个接口的子接口时,您可以将接口声明为静态。在 Java 的嵌套接口中使用 static

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便