如何合并两个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];
}