日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

leetcode 241. Different Ways to Add Parentheses | 241. 为运算表达式设计优先级(Java)

發布時間:2024/2/28 java 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 leetcode 241. Different Ways to Add Parentheses | 241. 为运算表达式设计优先级(Java) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目

https://leetcode.com/problems/different-ways-to-add-parentheses/

題解

參考:C++ Solution [Faster than 100%] | Explained with diagrams

  • The problem becomes easier when we think about these expressions as expression trees.
  • We can traverse over the experssion and whenever we encounter an operator, we recursively divide the expression into left and right part and evaluate them seperately until we reach a situation where our expression is purely a number and in this case we can simply return that number.
  • Since there can be multiple ways to evaluate an expression (depending on which operator you take first) we will get a list of reults from left and the right part.
  • Now that we have all the possible results from the left and the right part, we can use them to find out all the possible results for the current operator.
import java.util.ArrayList; import java.util.List;class Solution {public boolean isOp(char c) {return c == '+' || c == '-' || c == '*' || c == '/';}public int cal(int a, char op, int b) {return switch (op) {case '+' -> a + b;case '-' -> a - b;case '*' -> a * b;default -> a / b;};}public List<Integer> diffWaysToCompute(String expression) {char[] exp = expression.toCharArray();List<Integer> list = new ArrayList<>();boolean numberOnly = true;for (int i = 0; i < exp.length; i++) {List<Integer> left = new ArrayList<>();List<Integer> right = new ArrayList<>();if (isOp(exp[i])) {numberOnly = false;left = diffWaysToCompute(expression.substring(0, i));right = diffWaysToCompute(expression.substring(i + 1, exp.length));}for (int j : left) {for (int k : right) {list.add(cal(j, exp[i], k));}}}if (numberOnly) list.add(Integer.valueOf(expression));return list;} }

總結

以上是生活随笔為你收集整理的leetcode 241. Different Ways to Add Parentheses | 241. 为运算表达式设计优先级(Java)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。