【LeetCode刷题-双指针】--674.最长连续递增序列

674.最长连续递增序列

【LeetCode刷题-双指针】--674.最长连续递增序列_第1张图片

class Solution {
    public int findLengthOfLCIS(int[] nums) {
        int n = nums.length,i = 0,j = 0,res = 0;
        while(j < n){
            if( j>0 && nums[j-1] >= nums[j]){
                i = j;
            }
            j++;
            res = Math.max(res,j - i);
        }
    return res;
    }
}

你可能感兴趣的:(LeetCode,leetcode,算法)