1. 程式人生 > >LintCode- 最長上升連續子序列

LintCode- 最長上升連續子序列

最長上升連續子序列

給定一個整數陣列(下標從 0 到 n-1, n 表示整個陣列的規模),請找出該陣列中的最長上升連續子序列。(最長上升連續子序列可以定義為從右到左或從左到右的序列。)

樣例
給定 [5, 4, 2, 1, 3], 其最長上升連續子序列(LICS)為 [5, 4, 2, 1], 返回 4.

給定 [5, 1, 2, 3, 4], 其最長上升連續子序列(LICS)為 [1, 2, 3, 4], 返回 4.

注意
time

public class Solution {
    /**
     * @param A an array of Integer
     * @return
an integer */
public int longestIncreasingContinuousSubsequence(int[] A) { int max = 1,count = 1; if(A.length <=0){ return A.length; } //正向遍歷 for(int i = 1; i<A.length; ){ while(i<A.length && A[i]>A[i-1
] ){ i++; count++; }if(count > max){ max = count; } count = 1; i++; } //反向遍歷 for(int i = A.length - 1 ; i >= 0; ){ while(i > 0 && A[i]<A[i-1
] ){ i--; count++; }if(count > max){ max = count; } count = 1; i--; } return max; } }