摘要:唯一需要注意的就是乘法的情況,產生出,到達的時候,算出不包含的值,這里是,是乘號以前的算式值,算乘法部分。
Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -, or * between the digits so they evaluate to the target value. "123", 6 -> ["1+2+3", "1*2*3"] "232", 8 -> ["2*3+2", "2+3*2"] "105", 5 -> ["1*0+5","10-5"] "00", 0 -> ["0+0", "0-0", "0*0"] "3456237490", 9191 -> []
public class Solution { public ListaddOperators(String num, int target) { List res = new ArrayList (); dfs(num, target, res, "", 0, 0, 0); return res; } public void dfs(String num, int target, List res, String path, int pos, long eval, long mult){ if(pos == num.length()){ if(eval == target) res.add(path); return; } for(int i = pos; i < num.length(); i++){ if(i != pos && num.charAt(pos) == "0") break; long cur = Long.parseLong(num.substring(pos, i+1)); if(pos == 0){ dfs(num, target, res, path + cur, i+1, cur, cur); } else { dfs(num, target, res, path + "+" + cur, i+1, eval + cur, cur); dfs(num, target, res, path + "-" + cur, i+1, eval - cur, -cur); /* 唯一需要注意的就是乘法的情況,"345" 產生出 3+4*5, 到達5的時候,eval = 7, mul 4 eval-mult 算出不包含4的值,這里是7-4=3, 4是乘號以前的算式值,4*5, 算乘法部分。 參考Basic calculator II */ dfs(num, target, res, path + "*" + cur, i+1, (eval-mult) + mult*cur , mult*cur); } } } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66992.html
摘要:題目鏈接動態規劃問題,最后要求全部滿足條件的。還有個問題是取數字的時候可能超過的范圍,用來處理。的做法,討論切分點從到,本質和做法是一樣的,復雜度也不會降低。關鍵是求值,又變成原來的問題了,所以這題感覺不能加。 282. Expression Add Operators 題目鏈接:https://leetcode.com/problems... 動態規劃問題,最后要求全部滿足條件的pa...
Problem Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -, or * between the digits so they evaluate to the target value...
摘要:雙棧法四則運算括號復雜度時間空間思路算符優先算法,核心維護兩個棧,一個操作數棧,一個操作符棧。 Basic Calculator 2 Implement a basic calculator to evaluate a simple expression string. The expression string contains only non-negative integers...
摘要:問題在于如何將問題拆分成多次搜索。然而,乘法如何處理呢這里我們需要用一個變量記錄乘法當前累乘的值,直到累乘完了,遇到下一個加號或減號再將其算入計算結果中。這樣的計算結果就是。注意第一次搜索不添加運算符,只添加數字,就不會出現這種表達式了。 Expression Add Operators Given a string that contains only digits 0-9 and...
摘要:但是有可能嵌套的語句只是轉移到了工廠類,這違背了我們的目的。這樣可以減少嵌套語句的數量,并將責任委托給單個值。一個評估規則和返回基于輸入的結果。首先,我們將定義一個接口其次,讓我們實現一個所述接受一個表達對象,并返回結果。概述 ifelse是任何編程語言的重要組成部分。但是我們編寫了大量嵌套的if語句,這使得我們的代碼更加復雜和難以維護。 接下來,讓我們探索如何簡化代碼的中的ifelse語句...
閱讀 3156·2021-11-22 09:34
閱讀 2797·2021-09-22 15:28
閱讀 816·2021-09-10 10:51
閱讀 1853·2019-08-30 14:22
閱讀 2273·2019-08-30 14:17
閱讀 2734·2019-08-30 11:01
閱讀 2295·2019-08-29 17:19
閱讀 3653·2019-08-29 13:17