2014年6月5日

Leetcode: UniquePath II

摘要: Description:Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and e... 阅读全文

posted @ 2014-06-05 17:30 soyscut 阅读(176) 评论(0) 推荐(0) 编辑

Leetcode::Subsets

摘要: Given a set of distinct integers,S, return all possible subsets.分析:题目就是给一个整数集合,给出所以的子集。 基本思想是递归或者说是迭代的方法。用前面得到的集合来构造后面的。但是怎样高效、方便的构造集合是关键点。比如,开始想到的是先生... 阅读全文

posted @ 2014-06-05 17:18 soyscut 阅读(177) 评论(0) 推荐(0) 编辑

导航