LeetCode算法题:最长连续递增序列findLengthOfLCIS

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

示例 1:

输入: [1,3,5,4,7]
输出: 3
解释: 最长连续递增序列是 [1,3,5], 长度为3。
尽管 [1,3,5,7] 也是升序的子序列, 但它不是连续的,因为5和7在原数组里被4隔开。 
示例 2:

输入: [2,2,2,2,2]
输出: 1
解释: 最长连续递增序列是 [2], 长度为1。

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

思路:双指针,start指向递增头元素,end指向递增尾元素。

代码如下:

public int findLengthOfLCIS(int[] nums) {
        if(nums.length <= 1)return nums.length;
        int count = 1;

        int start = 0,end = 1;

        while(end < nums.length){
            if(nums[end] > nums[end-1]){
                end++;
                continue;
            }
            if(end -start > count)count = end - start;
            start = end++;
        }

        if(end -start > count)count = end - start;  //整个数组都为递增
        return count;
    }

你可能感兴趣的:(LeetCode)