Dynamic Programming21 sections · 916 units
Open in CourseQuiz: Bitonic Structure
Understanding the approach
Check Your Understanding
A bitonic sequence increases then decreases. How do we find the longest bitonic subsequence?
- A.Sort the array first
- B.Run LIS once from left to right
- C.Use BFS on the array
- D.Compute LIS from left AND LDS from right, combine at each position