leetcode

Posted Adding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode相关的知识,希望对你有一定的参考价值。

Evaluate the value of an arithmetic expression in Reverse Polish Notation.

Valid operators are+,-,*,/. Each operand may be an integer or another expression.

Some examples:

  ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9
  ["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6
这类计算结果题目是非常好用栈实现滴,遇到数字就将数字进栈,遇到字符就将栈中最上层的两个数出栈,然后用该运算符运算,然后再将运算结果进栈。

package com.cn.cya.evaluatereversepolishnotation;

import java.util.Stack;

public class Solution {
    public int evalRPN(String[] tokens) {
 
        Stack<Integer> stack=new Stack<Integer>();
        if(tokens==null||tokens.equals(""))return 0;
        for (int i = 0; i < tokens.length; i++) {
            if(tokens[i].equals("+")){
                int a=stack.pop();
                int b=stack.pop();
                stack.push(b+a);
            }else if(tokens[i].equals("-")){
                int a=stack.pop();
                int b=stack.pop();
                stack.push(b-a);
            }else if(tokens[i].equals("*")){
                int a=stack.pop();
                int b=stack.pop();
                stack.push(a*b);
            }else if(tokens[i].equals("/")){
                int a=stack.pop();
                if(a==0)return 0;
                int b=stack.pop();
                stack.push(b/a);
            }else {
                int a=Integer.parseInt(tokens[i]);
                stack.push(a);
            }
        }
        return stack.pop();
        
    }
}

以上是关于leetcode的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段

LEETCODE 003 找出一个字符串中最长的无重复片段

Leetcode 763 划分字母区间

LeetCode:划分字母区间763

Leetcode:Task Scheduler分析和实现

817. Linked List Components - LeetCode