Leetcode 674. 最长连续递增序列

题目描述

给定一个未经排序的整数数组,找到最长且 连续递增的子序列,并返回该序列的长度。

连续递增的子序列 可以由两个下标 l 和 r(l < r)确定,如果对于每个 l <= i < r,都有 nums[i] < nums[i + 1] ,那么子序列 [nums[l], nums[l + 1], …, nums[r - 1], nums[r]] 就是连续递增子序列。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

C++

class Solution {
public:
    int findLengthOfLCIS(vector<int>& nums) {
        //思路,遍历
        if(nums.size()==0){
            return 0;
        }
        int this_max=1;
        int temp=1;
        for(int i=1;i<nums.size();i++){
            if(nums[i-1]<nums[i]){
                temp++;
            }else{
                this_max=max(this_max,temp);
                temp=1;
            }
        }
        return  max(temp,this_max);
    }
};
上一篇:674. 最长连续递增序列


下一篇:LeetCode:674. 最长连续递增序列————简单