Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numb ...
分类:
其他好文 时间:
2018-10-15 23:09:27
阅读次数:
168
public class Solution { List> list = new List>();//全部记录 List records = new List();//一条记录 bool bk = false; private void BackTrack(List candidates, int ... ...
分类:
其他好文 时间:
2018-10-08 19:33:39
阅读次数:
163
重大新特性 支持 Redis/PDO/MySQLi 从4.1.0版本开始支持了对PHP原生Redis、PDO、MySQLi协程化的支持。 可使用Swoole\Runtime::enableCorotuine()将普通的同步阻塞Redis、PDO、MySQLi操作变为协程调度的异步非阻塞IO 协程跟踪 ...
分类:
数据库 时间:
2018-10-07 12:56:40
阅读次数:
165
使用排列组合计算公式来计算,注意使用long long型数据保证计算不会溢出。 ...
分类:
其他好文 时间:
2018-10-04 09:18:25
阅读次数:
125
从下面往上 可以建立一个cache 这个点往下search过已经知道最小值了 下一次访问的时候就可以直接取值, 因为一般一个点都会被上面访问两次,如果不这样就会time limit错误 ...
分类:
其他好文 时间:
2018-09-23 00:16:34
阅读次数:
158
1 class Solution { 2 List> res = new ArrayList(); 3 public List> combine(int n, int k) { 4 if(k == 0) return null; 5 int[] nums = new int[n]; 6 for(in... ...
分类:
其他好文 时间:
2018-09-15 23:24:22
阅读次数:
204
1 set([ 5 'package_max_length'=>1024*1024*10, 6 'upload_tmp_dir'=>__DIR__.'/upload' 7 ]); 8 //监听http协议 9 $http->on('request',function ($request,$respo... ...
分类:
Web程序 时间:
2018-09-14 14:33:33
阅读次数:
219
using prev // 90 subset2 sorting the array first and check the contains ...
分类:
其他好文 时间:
2018-05-15 14:01:29
阅读次数:
177
记录《The Definitive ANTLR 4 Reference》中出现的专业术语: grammar 文法,一种形式化(formal)的语言描述。 syntax 语法 phrase 短语 lexer 词法分析器 parser 语法分析器 parse tree 语法分析树,表示语法如何匹配输入的 ...
分类:
其他好文 时间:
2018-04-09 19:01:59
阅读次数:
170