国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

282. Expression Add Operators

Caicloud / 2185人閱讀

摘要:唯一需要注意的就是乘法的情況,產生出,到達的時候,算出不包含的值,這里是,是乘號以前的算式值,算乘法部分。

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 List addOperators(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

    摘要:題目鏈接動態規劃問題,最后要求全部滿足條件的。還有個問題是取數字的時候可能超過的范圍,用來處理。的做法,討論切分點從到,本質和做法是一樣的,復雜度也不會降低。關鍵是求值,又變成原來的問題了,所以這題感覺不能加。 282. Expression Add Operators 題目鏈接:https://leetcode.com/problems... 動態規劃問題,最后要求全部滿足條件的pa...

    enda 評論0 收藏0
  • [LeetCode] 282. Expression Add Operators

    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...

    wangjuntytl 評論0 收藏0
  • [Leetcode] Basic Calculator/Evaluate Expression

    摘要:雙棧法四則運算括號復雜度時間空間思路算符優先算法,核心維護兩個棧,一個操作數棧,一個操作符棧。 Basic Calculator 2 Implement a basic calculator to evaluate a simple expression string. The expression string contains only non-negative integers...

    starsfun 評論0 收藏0
  • [Leetcode] Expression Add Operators 添加運算符

    摘要:問題在于如何將問題拆分成多次搜索。然而,乘法如何處理呢這里我們需要用一個變量記錄乘法當前累乘的值,直到累乘完了,遇到下一個加號或減號再將其算入計算結果中。這樣的計算結果就是。注意第一次搜索不添加運算符,只添加數字,就不會出現這種表達式了。 Expression Add Operators Given a string that contains only digits 0-9 and...

    sumory 評論0 收藏0
  • Java中多個ifelse語句的替代設計

    摘要:但是有可能嵌套的語句只是轉移到了工廠類,這違背了我們的目的。這樣可以減少嵌套語句的數量,并將責任委托給單個值。一個評估規則和返回基于輸入的結果。首先,我們將定義一個接口其次,讓我們實現一個所述接受一個表達對象,并返回結果。概述 ifelse是任何編程語言的重要組成部分。但是我們編寫了大量嵌套的if語句,這使得我們的代碼更加復雜和難以維護。 接下來,讓我們探索如何簡化代碼的中的ifelse語句...

    izhuhaodev 評論0 收藏0

發表評論

0條評論

Caicloud

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<