- 浏览: 137624 次
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
[分析] 三种思路
思路1:每层递归新加一个元素,第一层递归,在结果中加入空集,然后循环添加不同的第一个元素并向下递归;第二层递归,先将输入参数中包含一个元素的子集加入结果,然后循环添加不同的第二个元素并向下递归……第 n + 1层将包含 n个元素的全集加入结果。
思路2和思路3参考Code Ganker博客,分别是递归和迭代的思路,个人觉得迭代更好理解。
[ref]
subset:
http://blog.csdn.net/linhuanmars/article/details/24286377
思路1:每层递归新加一个元素,第一层递归,在结果中加入空集,然后循环添加不同的第一个元素并向下递归;第二层递归,先将输入参数中包含一个元素的子集加入结果,然后循环添加不同的第二个元素并向下递归……第 n + 1层将包含 n个元素的全集加入结果。
思路2和思路3参考Code Ganker博客,分别是递归和迭代的思路,个人觉得迭代更好理解。
[ref]
subset:
http://blog.csdn.net/linhuanmars/article/details/24286377
public class Solution { // Method 1 public List<List<Integer>> subsets1(int[] nums) { List<List<Integer>> result = new ArrayList<List<Integer>>(); if (nums == null || nums.length == 0) { result.add(new ArrayList<Integer>()); return result; } Arrays.sort(nums); recur(nums, 0, new ArrayList<Integer>(nums.length), result); return result; } public void recur(int[] nums, int start, List<Integer> subset, List<List<Integer>> result) { result.add(new ArrayList<Integer>(subset)); for (int i = start; i < nums.length; i++) { subset.add(nums[i]); recur(nums, i + 1, subset, result); subset.remove(subset.size() - 1); } } // Method 2 public List<List<Integer>> subsets(int[] nums) { List<List<Integer>> result = new ArrayList<List<Integer>>(); if (nums == null || nums.length == 0) { result.add(new ArrayList<Integer>()); return result; } Arrays.sort(nums); return recur(nums, nums.length - 1); } public List<List<Integer>> recur(int[] nums, int idx) { if (idx < 0) { List<List<Integer>> result = new ArrayList<List<Integer>>(); result.add(new ArrayList<Integer>()); return result; } List<List<Integer>> result = recur(nums, idx - 1); int size = result.size(); for (int i = 0; i < size; i++) { List<Integer> newSubset = new ArrayList<Integer>(result.get(i)); newSubset.add(nums[idx]); result.add(newSubset); } return result; } // Method 3 public List<List<Integer>> subsets3(int[] nums) { List<List<Integer>> result = new ArrayList<List<Integer>>(); result.add(new ArrayList<Integer>()); if (nums == null || nums.length == 0) { return result; } Arrays.sort(nums); for (int i = 0; i < nums.length; i++) { int size = result.size(); for (int j = 0; j < size; j++) { List<Integer> newSubset = new ArrayList<Integer>(result.get(j)); newSubset.add(nums[i]); result.add(newSubset); } } return result; } }
发表评论
-
Leetcode - Palindrome Permutation II
2015-08-28 21:17 2214Given a string s, return all th ... -
Leetcode - Factor Combination
2015-08-28 09:53 862Numbers can be regarded as prod ... -
Leetcode - Generate Parentheses
2015-08-08 17:01 528[分析] 第一个思路(错误的~):假设递归函数返回 n - ... -
Leetcode - Word Search II
2015-08-03 21:25 973iven a 2D board and a list of w ... -
Leetcode - Word Search
2015-08-03 21:03 516Given a 2D board and a word, fi ... -
Leetcode - Subset II
2015-08-02 12:13 957[分析] 延续Subset三种思路,关键是添加去重处理 思路 ... -
Leetcode - Gray Code
2015-08-01 17:26 580原题链接:https://leetcode.com/probl ... -
Leetcode - Permutation Sequence
2015-08-01 17:19 515原题链接:https://leetcode.com/probl ... -
Leetcode - Permutation II
2015-08-01 10:49 604原题链接:https://leetcode.com/probl ... -
Leetcode - Combination
2015-08-01 08:36 496[分析] 从 n 个数中取 k 个数,第一个数有 n 种取法… ... -
Leetcode - Combination Sum III
2015-07-31 22:04 523[分析] 思路就是枚举k个数所有可能的组合并判断是否符合条件。 ... -
Leetcode - Combination Sum II
2015-07-31 21:06 616[分析] 输入数组中的每个元素至多使用一次,相较于Combin ... -
Leetcode - Combination Sum
2015-07-31 20:21 587Given a set of candidate number ... -
Leetcode - Sudoku Solver
2015-07-31 09:14 467[分析] 做Valid Sudoku时表示3*3区块的下标想得 ... -
Leetcode - N Queues II
2015-07-30 20:52 407[分析] 做完N皇后第一题,这个就so easy~ pu ... -
Leetcode - N-Queens
2015-07-30 20:38 445[分析] N皇后摆放规则:两个皇后不能共存于同一行、同一列以及 ... -
Leetcode - Word Ladder II
2015-06-26 09:19 533Given two words (start and end) ... -
Leetcode - Combination Sum III
2015-06-10 10:09 549Find all possible combinati ... -
Leetcode - Palindrome Partition
2015-05-21 09:56 786Given a string s, partition s s ... -
Leetcode - WordBreak III
2015-04-16 08:30 463Given a string s and a dictio ...
相关推荐
c c语言_leetcode题解之0416_partition_equal_subset_sum
java java_leetcode题解之Partition Equal Subset Sum.java
Subset Sum 最长回文:5. Longest Palindromic Substring - 字数组余数:523. Continuous Subarray Sum - 无重复字符的最长子串:3. Longest Substring Without Repeating Characters - 最小跳跃步数问题 - 动态规划...
leetcode 2 Useful Links 我的题解 刷题打卡活动 算法基础课 算法基础课笔记 基础算法 : 快速排序,归并排序 : 整数二分,浮点数二分 数据结构 搜索与图论 : Dijkstra, Bellman-Ford, SPFA, Floyd : 染色法、匈牙利...
leetcode卡Python 中的数据结构 leetcode, geekforgeeks 等解决了各种类型的问题。 ************************************ 回溯跟踪 **************** ************************ ...Subset of characters string cons
LeetCode是一个广受欢迎的在线平台,它提供了许多编程题目,帮助开发者提升算法技能并准备求职面试。第78题“子集”是LeetCode中的一个经典递归与回溯问题,旨在考察开发者对这两种核心算法的理解和应用。 递归是一...
result.extend([subset + [num] for subset in result]) return result ``` 这个函数首先创建一个结果列表,初始时只包含一个空子集。然后遍历输入的整数数组`nums`,对于每一个数字,我们将其添加到当前所有子...
leetcode 和 oj C-Coding C++ source codes OJ 序号 题目 描述 status 1 A+B Problem 基本输入输出 2 big int 超长整数相加 3 link 将两个线性表合并成为一个线性表 4 edit 字符串操作 5 二哥摘苹果 6 二哥种花生 7 ...
leetcode 2 和 c 动态_编程和递归 有几个程序专注于在 python 和 C++ 中使用动态编程解决问题 01_背包(3 种方法): 1.使用递归 2.使用递归+记忆 3.使用动态规划 Unbounded Knapsack :- 通过多次包含物品实现的最大...
在C++编程中,LeetCode是一个非常受欢迎的在线平台,用于练习和提升编程技能,特别是算法和数据结构。第78题"子集"(Subsets)是LeetCode中的一个经典问题,它涉及到深度优先搜索(DFS)或回溯算法的应用。在此,...
leetcode lrucache 目录 algorithm 基础算法 algorithm.tree BstChangeToLink: 输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表。 algorithm.lru LRUCache: 基于JavaLinkedHashMap实现的 LRU 算法 ...
subset/substring(strStr两道) BinarySearch BFS DFS more Linked List Array Two Pointer Hash Queue DP PS:这里只在每个文件夹的readme中写小部分笔记,更多刷题相关的总结在这里: PPS:如果是和leetcode重复的题...