
backTracking
i-Blue
抱平常心走平常路
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
39. Combination Sum-回溯法
Tags: backTracking(回溯法) http://blog.youkuaiyun.com/jarvischu/article/details/16067319 http://www.cnblogs.com/chinazhangjie/archive/2010/10/22/1858410.html http://blog.csdn.ne原创 2016-08-29 21:35:39 · 649 阅读 · 0 评论 -
10. Regular Expression Matching-动态规划/递归回溯
mplement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the entire input str原创 2016-09-11 21:40:08 · 1161 阅读 · 0 评论 -
377. Combination Sum IV-动态规划
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. Example: nums = [1, 2, 3] target = 4 The pos原创 2016-09-22 19:54:56 · 1336 阅读 · 0 评论