给定一个顺序存储的线性表,请设计一个算法查找该线性表中最长的连续递增子序列。例如,(1,9,2,5,7,3,4,6,8,0)中最长的递增子序列为(3,4,6,8)。
输入格式:
输入第1行给出正整数n(≤105);第2行给出n个整数,其间以空格分隔。
输出格式:
在一行中输出第一次出现的最长连续递增子序列,数字之间用空格分隔,序列结尾不能有多余空格。
输入样例:
15
1 9 2 5 7 3 4 6 8 0 11 15 17 17 10
输出样例:
3 4 6 8
#include<stdio.h>
int main(){
int n;
scanf("%d",&n);
int a[n];
int i;
for(i=0;i<n;i++)
scanf("%d",&a[i]);
int count=1,smax=1,p=0;
for(i=1;i<n;i++){
if(a[i]>a[i-1]){
count++;
}else{
count=1;
}
if(count>smax){
smax=count;
p=i;
}
}
int first=1;
for(i=p-smax+1;i<=p;i++){
if(first==1){
printf("%d",a[i]);
first++;
}else
printf(" %d",a[i]);
}
}