四、动态规划(2)--最长上升子序列

四、动态规划(2)--最长上升子序列_第1张图片
四、动态规划(2)--最长上升子序列_第2张图片
四、动态规划(2)--最长上升子序列_第3张图片
四、动态规划(2)--最长上升子序列_第4张图片
四、动态规划(2)--最长上升子序列_第5张图片
四、动态规划(2)--最长上升子序列_第6张图片
四、动态规划(2)--最长上升子序列_第7张图片
四、动态规划(2)--最长上升子序列_第8张图片
四、动态规划(2)--最长上升子序列_第9张图片
四、动态规划(2)--最长上升子序列_第10张图片
四、动态规划(2)--最长上升子序列_第11张图片
四、动态规划(2)--最长上升子序列_第12张图片
#include 
#include
#include
using namespace std;


const int MAX_N = 1010;
int a[MAX_N], maxLen[MAX_N];

int main(){
    int N;
    cout << "-------------------------" << endl;
    cout << "输入序列长度:";
    cin >> N;
    cout << "输入序列:" << endl;
    for (int i = 1; i <= N; ++i){
        cin >> a[i];
        maxLen[i] = 1;
    }
    /*
    cout << "-------------------------" << endl;
    // 人人为我递推
    for (int i = 2; i <= N;++i)
        for (int j = 1; j < i; ++j)
        {
            if (a[i]>a[j])
                maxLen[i] = max(maxLen[i], maxLen[j]+1);
        }
        cout <<"最大长度为:"<<* max_element(maxLen + 1, maxLen + N + 1) << endl;
    cout << "-------------------------" << endl;
    */

    //我为人人递推
    for (int i = 1; i <= N;++i)
        for (int j = i + 1; j <= N; ++j)
        {
            if (a[j] > a[i])
                maxLen[j] = max(maxLen[j] ,maxLen[i] + 1);
        }
    cout << "最大长度为:" << *max_element(maxLen + 1, maxLen + N + 1) << endl;
    cout << "-------------------------" << endl;
    return 0;
}

你可能感兴趣的:(四、动态规划(2)--最长上升子序列)