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.
Example 1:
Input: num = "123", target = 6
Output: ["1+2+3", "123"]
Example 2:
Input: num = "232", target = 8
Output: ["23+2", "2+32"]
Example 3:
Input: num = "105", target = 5
Output: ["1*0+5","10-5"]
Example 4:
Input: num = "00", target = 0
Output: ["0+0", "0-0", "0*0"]
Example 5:
Input: num = "3456237490", target = 9191
Output: []
class Solution { public ListSave path to StringBuilderaddOperators(String num, int target) { List res = new ArrayList<>(); if (num == null || num.length() == 0) return res; dfs(num, "", 0, target, res, 0, 0); return res; } private void dfs(String num, String temp, int index, int target, List res, long val, long multi) { if (index == num.length()) { if (val == target) res.add(temp); return; } for (int i = index; i < num.length(); i++) { if (i != index && num.charAt(index) == "0") break; long cur = Long.parseLong(num.substring(index, i+1)); if (index == 0) { dfs(num, temp+cur, i+1, target, res, cur, cur); } else { dfs(num, temp+"+"+cur, i+1, target, res, val+cur, cur); dfs(num, temp+"-"+cur, i+1, target, res, val-cur, -cur); dfs(num, temp+"*"+cur, i+1, target, res, val-multi+multi*cur, multi*cur); } } } }
class Solution { public ListUse char[] to store num and use StringBuilderaddOperators(String num, int target) { List res = new ArrayList<>(); dfs(num, 0, 0, target, 0, new StringBuilder(), res); return res; } private void dfs(String num, int index, long value, int target, long multi, StringBuilder sb, List res) { if (index == num.length()) { if (value == target) res.add(sb.toString()); return; } for (int i = index; i < num.length(); i++) { if (num.charAt(index) == "0" && i != index) break; long cur = Long.parseLong(num.substring(index, i+1)); int len = sb.length(); if (index == 0) { sb.append(cur); dfs(num, i+1, cur, target, cur, sb, res); sb.setLength(len); } else { sb.append("+").append(cur); dfs(num, i+1, value+cur, target, cur, sb, res); sb.setLength(len); sb.append("-").append(cur); dfs(num, i+1, value-cur, target, -cur, sb, res); sb.setLength(len); sb.append("*").append(cur); dfs(num, i+1, value-multi+multi*cur, target, multi*cur, sb, res); sb.setLength(len); } } } }
class Solution { public ListaddOperators(String num, int target) { List res = new ArrayList<>(); dfs(num.toCharArray(), 0, new StringBuilder(), 0, 0, target, res); return res; } private void dfs(char[] digits, int index, StringBuilder sb, long value, long multi, int target, List res) { if (index == digits.length) { if (value == target) res.add(sb.toString()); return; } for (int i = index; i < digits.length; i++) { if (digits[index] == "0" && i != index) break; long cur = Long.parseLong(new String(digits, index, i-index+1)); int len = sb.length(); if (index == 0) { sb.append(cur); dfs(digits, i+1, sb, cur, cur, target, res); sb.setLength(len); } else { sb.append("+").append(cur); dfs(digits, i+1, sb, value+cur, cur, target, res); sb.setLength(len); sb.append("-").append(cur); dfs(digits, i+1, sb, value-cur, -cur, target, res); sb.setLength(len); sb.append("*").append(cur); dfs(digits, i+1, sb, value-multi+multi*cur, multi*cur, target, res); sb.setLength(len); } } } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/72347.html
摘要:題目鏈接動態規劃問題,最后要求全部滿足條件的。還有個問題是取數字的時候可能超過的范圍,用來處理。的做法,討論切分點從到,本質和做法是一樣的,復雜度也不會降低。關鍵是求值,又變成原來的問題了,所以這題感覺不能加。 282. Expression Add Operators 題目鏈接:https://leetcode.com/problems... 動態規劃問題,最后要求全部滿足條件的pa...
摘要:唯一需要注意的就是乘法的情況,產生出,到達的時候,算出不包含的值,這里是,是乘號以前的算式值,算乘法部分。 Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -, or * be...
摘要:雙棧法四則運算括號復雜度時間空間思路算符優先算法,核心維護兩個棧,一個操作數棧,一個操作符棧。 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...
Problem Implement a basic calculator to evaluate a simple expression string. The expression string may contain open ( and closing parentheses ), the plus + or minus sign -, non-negative integers and e...
閱讀 664·2021-11-23 09:51
閱讀 3305·2021-10-11 10:58
閱讀 15465·2021-09-29 09:47
閱讀 3563·2021-09-01 11:42
閱讀 1293·2019-08-29 16:43
閱讀 1839·2019-08-29 15:37
閱讀 2112·2019-08-29 12:56
閱讀 1729·2019-08-28 18:21