题解 | #四则运算#

四则运算

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

import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Scanner;
import java.util.Set;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {

    private static String s = "";
    private static Node1 root = new Node1();
    private static Set<Character> nextTypes = new HashSet<>();
    private static Set<Character> brother = new HashSet<>();

    private static boolean isNextNode = false;
    private static boolean isBrother = false;


    private static void setBrother() {
        brother.add('+');
        brother.add('-');
    }

    private static void setNextTypes() {
        nextTypes.add('*');
        nextTypes.add('/');
    }

    private static void initFlag() {
        isNextNode = false;
        isBrother = false;
    }

    private static void change2nd() {
        s = s.replace("\\[", "(");
        s = s.replace("\\]", ")");
    }
    private static void change3rd() {
        s = s.replace("\\{", "(");
        s = s.replace("\\}", ")");
    }


    private static void spilt1st() {
        int start = -1;//s.replaceFirst("\\(", "a").indexOf("a");
        int end = s.replaceFirst("\\)", "b").indexOf("b");
        if (end == -1) {
            return;
        }
        for (int i = end; i >= 0; i--) {
            char c = s.charAt(i);
            if (c == '(') {
                start = i;
                break;
            }
        }

        if (start < 0) {
            return;
        }
        String s1 = s.substring(start + 1, end);
        int sum = doResult(s1);
        String replace = s.replace("(" + s1 + ")", "" + sum);
        s = replace;
        spilt1st();
    }

    private static int doResult(String s1) {

        Node1 temp = new Node1();
        temp.preNode = root;
        root.eqLevel.add(temp);
        int len = s1.length();
        for (int i = 0; i < len; i++) {

            char c = s1.charAt(i);
            if (c >= '0' && c <= '9') {
                int ci = (int)c - 48;
                temp.data = 10 * temp.data + (temp.dataFlag ? ci : -ci);
                initFlag();
            } else {
                if (isNextNode && c == '-') {
                    temp.dataFlag = false;
                    continue;
                }
                temp = setNextNode(s1, temp, i);
            }
        }

        int sum = root.getSum();
        //System.out.println(sum);
        root = new Node1();
        return sum;
    }

    public static void main(String[] args) {

        setNextTypes();
        setBrother();

        int result = 0;
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNext()) { // 注意 while 处理多个 case
            s = in.next();
        }

        spilt1st();
        change2nd();
        spilt1st();
        change3rd();
        spilt1st();
        int sum = doResult(s);
        System.out.print(sum);
    }



    private static Node1 setNextNode(String s1, Node1 node1, int index) {

        initFlag();
        if (index + 1 >= s1.length()) {
            node1.end = true;
            return node1;
        }
        Node1 next = isNextNode(s1, node1, index);
        if (isNextNode) {
            return next;
        }
        next = isBrother(s1, node1, index);
        if (isBrother) {
            return next;
        }

        throw new RuntimeException("运算符号不符合");
    }


    private static Node1 isNextNode(String s1, Node1 node1, int index) {
        char c = s1.charAt(index);
        if (nextTypes.contains(c)) {
            node1.nextNodeType = c;
            Node1 nextNode = new Node1();
            node1.nextNode = nextNode;
            nextNode.preNode = node1;
            isNextNode = true;
            return nextNode;
        }
        return node1;
    }

    private static Node1 isBrother(String s1, Node1 node1, int index) {
        char c = s1.charAt(index);
        if (brother.contains(c)) {
            Node1 eqNode = new Node1();
            if ('-' == c) {
                eqNode.dataFlag = false;
            }
            eqNode.preNode = root;
            root.eqLevel.add(eqNode);
            isBrother = true;
            return eqNode;
        }
        return node1;
    }

    static class Node1 {
        public Integer data = 0;
        public boolean dataFlag = true;
        public boolean end = false;
        public List<Node1> eqLevel = new LinkedList<>();
        public Node1 nextNode = null;
        public char nextNodeType = '+';
        public Node1 preNode = null;

        public Integer getSum() {
            Integer sum = 0;
            if (eqLevel != null) {
                for (Node1 i : eqLevel) {
                    sum += i.result();
                }
            }
            return sum;
        }

        public Integer getNextNodeResult() {
            Integer nextNodeResult = 0;
            if (nextNode != null) {

                if (nextNodeType == '*') {
                    nextNodeResult = data * nextNode.getNextNodeResult();
                } else if (nextNodeType == '/') {
                    nextNodeResult = data / nextNode.getNextNodeResult();
                }
            } else {
                nextNodeResult = data;
            }
            return nextNodeResult;
        }

        public Integer result() {

            Integer result = getNextNodeResult() + getSum();
            return result;
        }
    }
}

换了几种思路,这个不错

#努力刷题下#
雪域灰灰刷题笔记 文章被收录于专栏

雪域灰灰刷题笔记

全部评论

相关推荐

04-16 10:27
已编辑
美团_Saas_后端开发
今天周一休息,突发奇想写一篇阶段总结。如题,我已经去了一个和Java彻底毫无关联的行业。曾经我以为自己能在计算机行业发光发热,拿到美团offer那会感觉自己天都亮了。没想到刚入行一年多就当了逃兵。从最开始的热爱到现在一看到代码就厌恶,不知道自己经历了什么。所以我去干什么了?答案是:在成都当了租房销售。上班那会压力大了就念叨着去干租房中介,但是一直下不去这个决心,想着自己学了四年多的计算机知识,终究还是不甘心。终于在某一天准备八股文的时候,看着无数篇和工作内容关系不大的理论知识,那一刻下定决心,决定尝试一下销售行业,也算是给自己一个交代。后面阴差阳错的投了成都自如去当租房管家,没想到面试很顺利,在当天一百多个面试的人里面,我成为了为数不多通过的几个幸运儿之一。目前已经培训通过,正式入职,也开了单,有压力但是每天过得很开心,真心喜欢那种和人交流的感觉,哪怕是最后没有选择找我租房。说这些也是想告诉那些大三,大四正在找Java实习而焦虑的同学:你们现在还年轻,选择很多,容错率也很高,可以尽情去尝试自己喜欢的行业和工作。不用因为某一次的面试没通过或者简历石沉大海而焦虑,更不用因为身边人都在挤编程的独木桥就强迫自己跟风。也算是自己的碎碎念吧,也希望自己能在新的领域取得一点小成就。也祝牛油工作顺利!
沉淀小子:干啥都不丢人啊,生存是必须要的,销售很考验一个人综合素质能力的,好的销售人脉和资源可不比写字楼的白领差啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务