logo CodeStepByStep logo

longestSortedSubsequence

Language/Type: Java dynamic programming

Write a method named longestSortedSubsequence that accepts an array of integers and returns the length of the longest non-decreasing subsequence of values in the array using dynamic programming. A subsequence contains values in the same order they occurred in the original array, though not necessarily consecutively. For example, if the array stores {10, 22, 9, 33, 21, 50, 41, 60, 80}, the longest sorted subsequence is {10, 22, 33, 50, 60, 80}, so the value returned should be its length, which is 6.

The key constraint of this problem is that you must solve it using a bottom-up dynamic programming approach. Do not use recursion. Your solution must use dynamic programming instead.

You are allowed to construct any data structures (array, list, set, map, etc.) necessary to store the data for your dynamic programming algorithm.

Method: Write a Java method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.