如題算法
核心思想是,維護一個數組ends,它記錄了長度爲k的子序列的末尾元素的最小值。聽起來很抽象,咱們不妨手動演示一遍整個過程。數組
假設數組a={2,9,4,27,29,15,7},令length表示當前找到的最長非降低子序列的長度。初始時length=1,ends[1]=2。spa
i=1,length=2,ends[2]=9;code
i=2,length=2,ends[2]=4,緣由是4比9更容易和後面的數構成非降低子序列;it
i=3,length=3,ends[3]=27;io
i=4,length=4,ends[4]=29;function
i=5,length=4,15能和ends[2]=4鏈接起來,而且它比ends[3]=27更容易和後面的數構成非降低子序列,所以ends[3]=15;class
i=6,length=4,end[3]=7。static
能夠看到,整個算法就是找到ends中第一個大於當前數的位置。假設當前數爲a[i],找到的位置爲t,說明ends[t-1]<=a[i],那麼a[i]能夠和ends[t-1]鏈接起來,構成長度爲i的子序列,同時ends[t]>a[i],說明a[i]要比ends[t]更容易和後面的數構成子序列,所以進行替換。能夠說,算法的思想是貪心加二分。word
package com.iqiyi;
public class Test {
public static void main(String[] args){
int[] array=new int[]{2,9,4,27,29,15,7};
int[] ends=new int[array.length+1];
ends[1]=array[0];
int length=1;
for(int i=1;i<array.length;i++){
int low=1;
int high=length;
while(low<high){
int mid=(low+high)/2;
if(ends[mid]<=array[i])
low=mid+1;
else
high=mid;
}
if(ends[low]>array[i])
ends[low]=array[i];
else{
length++;
ends[length]=array[i];
}
}
System.out.println(length);
}
}
複製代碼