leetcode 300 最长上升子序列

Posted 小白进修

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 300 最长上升子序列相关的知识,希望对你有一定的参考价值。

地址:https://leetcode-cn.com/problems/longest-increasing-subsequence/
大意:给定一个数组,找到最长上升子序列

//时间复杂度O(n^2),动态规划
class Solution {
public:
    int lengthOfLIS(vector<int>& nums) {
        if(nums.size() == 0){
            return 0;
        }
        int dp[nums.size()];
        dp[0] = 1;
        int res = 1;
        for(int i = 1 ; i < nums.size() ; i ++ ){
            dp[i] = 1;
            for(int j = 0 ; j < i ; j ++ ){
                if(nums[i] > nums[j]){
                    dp[i] = max(dp[i],dp[j]+1);
                    res = max(dp[i],res);
                }
            }
        }
        return res;
    }
};

以上是关于leetcode 300 最长上升子序列的主要内容,如果未能解决你的问题,请参考以下文章

leetcode300 最长上升子序列(Medium)

Leetcode-300. 最长上升子序列

Leetcode 300.最长上升子序列

leetcode-300最长上升子序列

leetcode300.最长上升子序列

leetcode 300. 最长上升子序列