内容简介:递归第二天
递归第二天
上 一 题 链 接 Leetcode基础刷题之 PHP 解析(17. Letter Combinations of a Phone Number)
题 目 描 述
给定一个数组和一个目标数,求所有加起来等于目标数的组合,注意一个数可以被多次利用,但是组合是唯一的,不能有重复的组合。
题 目 分 析
这里我定义了三个变量,用来记录当前递归的数组下标,每次产生一个结果的小集合,以及最终所有符合条件的集合,返回的也就是一个二维数组.
/** * @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)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Apache Flink 零基础入门(一):基础概念解析
- Apache Flink 零基础入门(一):基础概念解析
- JStorm 源码解析:基础线程模型
- React Hooks 解析(上):基础
- TypeScript基础入门之模块解析(一)
- TypeScript基础入门之模块解析(二)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
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》 这本书的介绍吧!