摘要:
最长递增子序列 300. 最长递增子序列 普通解法 #include <vector> using namespace std; class Solution { public: // 时间复杂度 O(n^2) int lengthOfLIS(vector<int> &nums) { int n = 阅读全文
摘要:
子数组最大累加和(下) 152. 乘积最大子数组 #include <vector> #include <algorithm> using namespace std; class Solution { public: int maxProduct(vector<int> &nums) { int 阅读全文