lc 最长连续递增序列

Posted friskypuppy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lc 最长连续递增序列相关的知识,希望对你有一定的参考价值。

链接:https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence/

代码:

技术图片
class Solution {
public:
    int findLengthOfLCIS(vector<int>& nums) {
        int n = nums.size();
        if(n == 0) return 0;
        if(n == 1) return 1;
        int a[n];
        for(int i= 0; i < n; i++) {
            if(i == 0) a[i] = 1;
            else a[i] = nums[i]-nums[i-1] > 0 ? 1 : 0;
        }
        // debug
        for(int i = 0; i < n; i++) {
            cout << a[i] << " ";
        }
        cout << endl;
        int res = 1;
        int cur = 0;
        for(int i = 0; i < n; i++) {
            if(a[i] == 1) {
                cur++;
                res = max(res, cur);
            }
            else cur = 1;
        }
        return res;
    }
};
View Code

思路:求增量然后找到最长 1 串即可。

以上是关于lc 最长连续递增序列的主要内容,如果未能解决你的问题,请参考以下文章

算法 LC 动态规划 - 最大递增子序列

[Mdp] lc673. 最长递增子序列的个数(LIS+算法优化+算法拓展)

[Mdp] lc673. 最长递增子序列的个数(LIS+算法优化+算法拓展)

[Mdp] lc673. 最长递增子序列的个数(LIS+算法优化+算法拓展)

lc 最长连续序列

代码随想录算法训练营第五十二天 | 300.最长递增子序列 674. 最长连续递增序列 718. 最长重复子数组