摘要: 最长递增子序列 300. 最长递增子序列 普通解法 #include <vector> using namespace std; class Solution { public: // 时间复杂度 O(n^2) int lengthOfLIS(vector<int> &nums) { int n = 阅读全文
posted @ 2024-10-14 21:30 n1ce2cv 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 子数组最大累加和(下) 152. 乘积最大子数组 #include <vector> #include <algorithm> using namespace std; class Solution { public: int maxProduct(vector<int> &nums) { int 阅读全文
posted @ 2024-10-14 13:34 n1ce2cv 阅读(6) 评论(0) 推荐(0) 编辑