某大神的,理解后敲出来。题解 | #四则运算#

四则运算

https://www.nowcoder.com/practice/9999764a61484d819056f807d2a91f1e

import java.util.Scanner;
import java.util.Stack;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        scanner.useDelimiter("\n");
        while (scanner.hasNext()) {
            String S = scanner.next();
            S = S.replaceAll("\\[", "(").replaceAll("]", ")")
                .replaceAll("\\{", "(").replaceAll("}", ")");
            System.out.println(yunsuan(S));
        }
    }

    public static int yunsuan(String S) {
        char opt = '+';
        int length = S.length();
        Stack<Integer> stack = new Stack<>();
        for (int i = 0; i < S.length(); i++) {
            char c = S.charAt(i);
            if (Character.isDigit(c)) {
                int num = 0;
                while (i < length && Character.isDigit(S.charAt(i))) {
                    num = num * 10 + S.charAt(i) - 48;
                    i++;
                }
                i--;
                if (opt == '+') stack.push(num);
                else if (opt == '-') stack.push(-num);
                else if (opt == '*') stack.push(stack.pop() * num);
                else if (opt == '/') stack.push(stack.pop() / num);
            } else if (c == '+' || c == '-' || c == '*' || c == '/') {
                opt = c;
            } else if (c == '(') {
                int left = i;
                int right = i + 1;
                int count = 1;
                while (right < length && count > 0) {
                    if (S.charAt(right) == '(') count++;
                    if (S.charAt(right) == ')') count--;
                    right++;
                }
                i = right - 1;
                int num = yunsuan(S.substring(left + 1, right - 1));
                if (opt == '+') stack.push(num);
                else if (opt == '-') stack.push(-num);
                else if (opt == '*') stack.push(stack.pop() * num);
                else if (opt == '/') stack.push(stack.pop() / num);
            }
        }
        int res = 0;
        while (!stack.isEmpty()) {
            res += stack.pop();
        }
        return res;
    }
}

全部评论

相关推荐

04-02 14:40
浙江大学 设计
无语😓&nbsp;就喜欢找我茬,研究生怎么了&nbsp;研究生就是天才吗&nbsp;就得所有报告文件都会,最烦做表
我推的MK:是这样的,那些领导就是自己什么都不懂就把所有东西扔给你,指望白嫖你的劳动力,如果你的表现不如预期就启动攻击学历模式,这都学不会是怎么考上浙大的
点赞 评论 收藏
分享
希望被捞的猫头鹰很理智:大概率待遇低怕硕士跑路
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务