491. Non-decreasing Subsequences
https://leetcode.com/problems/non-decreasing-subsequences/
solution
注意:本题dfs里不能有return,要取树上的所有节点。如果return遇到一层符合的就返回了
原去重思路:排序+判断相等无法使用,因为无法排序。另一种去重思路:保存后保存
时间复杂度:O(n⋅2^n) 空间复杂度:O(2^n)
Last updated
https://leetcode.com/problems/non-decreasing-subsequences/
注意:本题dfs里不能有return,要取树上的所有节点。如果return遇到一层符合的就返回了
原去重思路:排序+判断相等无法使用,因为无法排序。另一种去重思路:保存后保存
时间复杂度:O(n⋅2^n) 空间复杂度:O(2^n)
Last updated