491 Increasing Subsequences 递增子序列
Posted lina2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了491 Increasing Subsequences 递增子序列相关的知识,希望对你有一定的参考价值。
给定一个整型数组, 你的任务是找到所有该数组的递增子序列,递增子序列的长度至少是2。
示例:
输入: [4, 6, 7, 7]
输出: [[4, 6], [4, 7], [4, 6, 7], [4, 6, 7, 7], [6, 7], [6, 7, 7], [7,7], [4,7,7]]
说明:
1.给定数组的长度不会超过15。
2.数组中的整数范围是 [-100,100]。
3.给定数组中可能包含重复数字,相等的数字应该被视为递增的一种情况。
详见:https://leetcode.com/problems/increasing-subsequences/description/
C++:
class Solution { public: vector<vector<int>> findSubsequences(vector<int>& nums) { set<vector<int>> res; vector<vector<int>> cur(1); for (int i = 0; i < nums.size(); ++i) { int n = cur.size(); for (int j = 0; j < n; ++j) { if (!cur[j].empty() && cur[j].back() > nums[i]) { continue; } cur.push_back(cur[j]); cur.back().push_back(nums[i]); if (cur.back().size() >= 2) { res.insert(cur.back()); } } } return vector<vector<int>>(res.begin(), res.end()); } };
参考:http://www.cnblogs.com/grandyang/p/6388103.html
以上是关于491 Increasing Subsequences 递增子序列的主要内容,如果未能解决你的问题,请参考以下文章