第674题,Longest Continuous Increasing Subsequence 题目: Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). 本题的意思是给一个未排序的数组,求出数组中连续递增的序列的最大长度。
文章目录 一、300、最长递增子序列二、674、最长连续递增序列三、完整代码 所有的LeetCode题解索引,可以看这篇文章——【算法和数据结构】LeetCode题解。 一、300、最长递增子序列 思路分析: 第一步,动态数组的含义。 d p [ i ] dp[i] dp[i]代表 i i i之前包括以 i i i结尾的最长递增子序列的长度。我们在做递增比较的时