Leetcode基础刷题之PHP解析(39. Combination Sum)

栏目: PHP · 发布时间: 5年前

内容简介:递归第二天

递归第二天

Leetcode基础刷题之 PHP 解析(17. Letter Combinations of a Phone Number)

Leetcode基础刷题之PHP解析(39. Combination Sum)

给定一个数组和一个目标数,求所有加起来等于目标数的组合,注意一个数可以被多次利用,但是组合是唯一的,不能有重复的组合。

这里我定义了三个变量,用来记录当前递归的数组下标,每次产生一个结果的小集合,以及最终所有符合条件的集合,返回的也就是一个二维数组.

/**
     * @param Integer[] $candidates
     * @param Integer $target
     * @return Integer[][]
     */
    function combinationSum($candidates, $target) {
        $out=[];
        $res=[];
       $this->helper($candidates,$target,0,$out,$res);
        return $res;
    }
    function helper($candidates,$target,$index,&$out,&$res){
        if($target<0) return ;
        if($target==0) {
             array_push($res,$out);
            return ;
        }
           
        for($i=$index;$i<count($candidates);$i++){
            array_push($out,$candidates[$i]);
            $this->helper($candidates,$target-$candidates[$i],$i,$out,$res);
            array_pop($out);
        }
    }

Github整理地址 : https://github.com/wuqinqiang/leetcode-php


以上所述就是小编给大家介绍的《Leetcode基础刷题之PHP解析(39. Combination Sum)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

JavaScript and Ajax for the Web, Sixth Edition

JavaScript and Ajax for the Web, Sixth Edition

Tom Negrino、Dori Smith / Peachpit Press / August 28, 2006 / $24.99

Book Description Need to learn JavaScript fast? This best-selling reference’s visual format and step-by-step, task-based instructions will have you up and running with JavaScript in no time. In thi......一起来看看 《JavaScript and Ajax for the Web, Sixth Edition》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具