Longest Common Increasing Subsequence
Longest Common Increasing Subsequence
return result;
}
int n = sizeof(arr1)/sizeof(arr1[0]);
int m = sizeof(arr2)/sizeof(arr2[0]);
table[j] = current + 1;
parent[j] = last;
}
}
return result;
}
int n = sizeof(arr1)/sizeof(arr1[0]);
int m = sizeof(arr2)/sizeof(arr2[0]);
}
Output :
The LCIS is : 3 9
Length of LCIS is 2
Time Complexity : O(m*n)
Auxiliary Space : O(m)
This article is contributed Rachit Belwariar. If you like GeeksforGeeks and
would like to contribute, you can also write an article and mail your article to
[email protected]. See your article appearing on the GeeksforGeeks
main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more
information about the topic discussed above