Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the ...
分类:
其他好文 时间:
2018-10-15 21:48:11
阅读次数:
172
Given n pairs of parentheses, write a function to generate all combinations of well formed parentheses. For example, given n = 3, a solution set is: [ ...
分类:
其他好文 时间:
2018-10-08 13:30:31
阅读次数:
156
Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit to le ...
分类:
其他好文 时间:
2018-10-04 10:00:48
阅读次数:
133
给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。 给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。 说明:尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。 ...
分类:
其他好文 时间:
2018-09-28 22:09:22
阅读次数:
181
Given a string containing only digits, restore it by returning all possible valid IP address combinations. Example: IP address is consist of 4 parts w ...
分类:
其他好文 时间:
2018-09-23 11:31:47
阅读次数:
148
Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the ...
分类:
其他好文 时间:
2018-09-23 00:18:57
阅读次数:
145
一、题目 1、审题 2、分析 给出整数 n,整数 k,求 1~n 之间的 k 个数字的所有组成。 二、解答 1、思路: 方法一、运用 DFS 方法。 方法二、f(n, k) = f(n-1, k-1) + f(n-1, k) 即: k 个数字中选了 数字 n 和 k 个数字中未选取数字 n 两种情况 ...
分类:
其他好文 时间:
2018-09-22 23:46:23
阅读次数:
177
Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit to le ...
分类:
其他好文 时间:
2018-09-22 15:13:26
阅读次数:
132
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: [ ...
分类:
其他好文 时间:
2018-09-16 15:27:45
阅读次数:
135
题目: Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit t ...
分类:
编程语言 时间:
2018-09-03 19:30:13
阅读次数:
184