最长连续递增子串

Posted cstdio1

tags:

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

题目链接:https://leetcode.com/problems/longest-continuous-increasing-subsequence/description/

class Solution 
public:
    int findLengthOfLCIS(vector<int>& nums) 
        int n = nums.size();
        if(n<=1) return n;
        int res = 1, len=1;
        for(int i=1; i<n; i++)
            if(nums[i] > nums[i-1]) len+=1;
            else len = 1;
            res = max(len, res);
        
        return res;
    
;
 

 

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

子序列与子串问题

子序列与子串问题

子序列与子串问题

最长上升子序列的长度&最长上升子序列的个数

算法 ---- 子序列系列问题题解(子序列编辑距离回文系列问题)

算法 ---- 子序列系列问题题解(子序列编辑距离回文系列问题)