I have a problem : find the longest array integer increasing sequence of integer array given. Using recursive.
example:
input : int array[] = {12 5 7 6 8 14 11 13 5 }
output: max[] = {5 6 8 11 13}
Thanks !
A websearch returns many hits for "recursive longest increasing subsequence".