-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongestincreasingsubsequence.cpp
More file actions
47 lines (40 loc) · 1.03 KB
/
longestincreasingsubsequence.cpp
File metadata and controls
47 lines (40 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include<iostream>
using namespace std;
int longestsubsequence(int * input,int n){
int * output=new int[n];
output[0]=1;
for(int i=1;i<n;i++){
output[i]=1;
for(int j=i-1;j>=0;j--){
if(input[j]>input[i]){
continue;
}
int possibleans = output[j]+1;
if(possibleans>output[i]){
output[i]=possibleans;
}
}
}
int longestcount =0;
for(int i=0;i<n;i++){
if(longestcount<output[i]){
longestcount = output[i];
}
}
delete [] output;
return longestcount;
}
int main(){
int n ;
cout<<"Enter the size of the array"<<endl;
cin>>n;
int* input =new int[n];
cout<<"Enter the Array Elements"<<endl;
for(int i=0;i<n;i++){
cin>>input[i];
}
int ans = longestsubsequence(input,n);
delete [] input;
cout<<"The count of longest increasing subsequence3 fo the array is "<<ans<<endl;
return 0;
}