- 浏览: 137557 次
文章分类
- 全部博客 (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
[分析] 延续Subset三种思路,关键是添加去重处理
思路1:仅需在递归函数循环前面的加个if判断,这个技巧在Combination,Permutation中均使用。这个去重处理是三种实现中最简洁的,不容易出错。
思路2和思路3参考Code Ganker博客,分别是递归和迭代的思路,去重处理花了番功夫理解。
[ref]
subset II: http://blog.csdn.net/linhuanmars/article/details/24613193
思路1:仅需在递归函数循环前面的加个if判断,这个技巧在Combination,Permutation中均使用。这个去重处理是三种实现中最简洁的,不容易出错。
思路2和思路3参考Code Ganker博客,分别是递归和迭代的思路,去重处理花了番功夫理解。
[ref]
subset II: http://blog.csdn.net/linhuanmars/article/details/24613193
public class Solution { // Method 1 public List<List<Integer>> subsetsWithDup1(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++) { if (i > start && nums[i] == nums[i - 1]) continue; subset.add(nums[i]); recur(nums, i + 1, subset, result); subset.remove(subset.size() - 1); } } // Method 2 public List<List<Integer>> subsetsWithDup2(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); ArrayList<Integer> lastSize = new ArrayList<Integer>(); lastSize.add(0); return recur(nums, nums.length - 1, lastSize); } public List<List<Integer>> recur(int[] nums, int idx, ArrayList<Integer> lastSize) { 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, lastSize); int size = result.size(); int start = 0; if (idx > 0 && nums[idx] == nums[idx - 1]) start = lastSize.get(lastSize.size() - 1); for (int i = start; i < size; i++) { List<Integer> newSubset = new ArrayList<Integer>(result.get(i)); newSubset.add(nums[idx]); result.add(newSubset); } lastSize.add(size); return result; } // Method 3 public List<List<Integer>> subsetsWithDup3(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); int start = 0; int lastSize = 0; for (int i = 0; i < nums.length; i++) { if (i > 0 && nums[i] == nums[i - 1]) start = lastSize; else start = 0; lastSize = result.size(); for (int j = start; j < lastSize; 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 861Numbers can be regarded as prod ... -
Leetcode - Generate Parentheses
2015-08-08 17:01 526[分析] 第一个思路(错误的~):假设递归函数返回 n - ... -
Leetcode - Word Search II
2015-08-03 21:25 972iven 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
2015-08-02 12:06 949[分析] 三种思路 思路1:每层递归新加一个元素,第一层递归, ... -
Leetcode - Gray Code
2015-08-01 17:26 579原题链接: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 494[分析] 从 n 个数中取 k 个数,第一个数有 n 种取法… ... -
Leetcode - Combination Sum III
2015-07-31 22:04 522[分析] 思路就是枚举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 466[分析] 做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 532Given 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 - 最小跳跃步数问题 - 动态规划...
II], [39 Combination Sum], [17 Phone Num] [] BFS [] [] [] DP , [53 max subarray], , [96 DP | BST], , [] [] Binary Search , , [74 2D matrix] [] Slicing Window / Two Pointers [918 Ma
leetcode卡Python 中的数据结构 leetcode, geekforgeeks 等解决了各种类型的问题。 ************************************ 回溯跟踪 **************** ************************ ...Subset of characters string cons
LeetCode是一个广受欢迎的在线平台,它提供了许多编程题目,帮助开发者提升算法技能并准备求职面试。第78题“子集”是LeetCode中的一个经典递归与回溯问题,旨在考察开发者对这两种核心算法的理解和应用。 递归是一...
【Python LeetCode 面试题解之第78题 子集】 在LeetCode平台上的第78题,名为“Subsets”(子集),是...同时,也可以通过练习LeetCode上的其他相关题目,如“Subsets II”(子集II,考虑重复元素)来提升自己的能力。
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重复的题...