Hi,
I need help in solving the following dynamic programming problem.
Length of Longest Subsequence Problem Link - https://www.interviewbit.com/problems/length-of-longest-subsequence/
Given an array of integers, find the length of longest subsequence which is first increasing then decreasing. **Example: ** For the given array [1 11 2 10 4 5 2 1] Longest subsequence is [1 2 10 4 2 1] Return value 6
Asked by: Patrica_Millie on April 7, 2019, 6:34 p.m. Last updated on April 7, 2019, 6:34 p.m.
This type of sub-sequence is called Bitonic Sub-sequence. Your task is to find the longest bitonic subsequence. It's a standard problem.
You may check these links:
https://www.youtube.com/watch?v=TWHytKnOPaQ
http://www.geeksforgeeks.org/dynamic-programming-set-15-longest-bitonic-subsequence