将2个动态2D阵列合并为一个动态2D阵列

时间:2016-10-12 08:14:41

标签: arrays

如何合并两个2D阵列并将其存储在新的2D阵列中。 我想要合并的2D数组是 child [maxindex] [p] child [m_maxindex] [p] 。数组是动态的。

    int point = 2;
    for (int p = 0; p < point; p++)
    {
        int Temp3 = Temp_parent1[maxindex][p];
        Temp_parent1[maxindex][p] = child[maxindex][p];
        child[maxindex][p] = Temp3;
        cout << "   " << child[maxindex][p];
    }

    for (int p = point; p <= genes - 1; p++)

    {
        int Temp3 = Temp_parent1[m_maxindex][p];
        Temp_parent1[m_maxindex][p] = child[m_maxindex][p];
        child[m_maxindex][p] = Temp3;
        cout << "   " << child[m_maxindex][p];
    }

0 个答案:

没有答案