error java Метод комбинацииSum (int [], int, List <Integer>) в типе Solution не применим для аргументов (int [], int, boolean) - PullRequest
3 голосов
/ 29 мая 2020

/// , чтобы получить все значения, которые прибавляются к цели. error Метод комбинацииSum (int [], int, List) в типе Solution неприменим для аргументов (int [], int, boolean)

import java.util.*;
public class Solution {

    static List<Integer> b= new ArrayList<Integer>();
    static List<List<Integer>> c= new ArrayList<List<Integer>>();
    public static void combinationSum(int[] candidates, int target, List<Integer> b) 
    {   
        if(target==0)
        {
            c.add(b);
        }

        else {
        for(int i=0;i<candidates.length;i++)
        {   

//          else
//          {
          //  if( target < 0 )
          //  {
                //b.remove( b.size() - 1 );
          //  }
            if(target>0)
            {
                //b.add(candidates[i]);
                combinationSum(candidates,target-candidates[i],b.add(candidates[i]));
                //b.remove( b.size() - 1 );
            }
            //}
        }
        }
        //return;
    }

    public static void main(String[] args)
    {   
        int[] candidates= {2,3,5};
        int target=8;
        combinationSum(candidates,target,b);
        System.out.println(c);
    }

1 Ответ

1 голос
/ 29 мая 2020

Вы можете попробовать следующее:

b.add(candidates[i]);
combinationSum(candidates,target-candidates[i],b));

Сначала добавьте кандидатов в b, а затем передайте список в рекурсивном вызове.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...