Swapping two rows in a matrix

橙三吉。 提交于 2019-12-25 17:08:50

问题


I am having a problem in swapping two rows in a matrix that is a 2D-dynamic array. I wanted to know if there is a function to use directly or if there is none I would like to know how to make one. Thanks in advance. Here is how I made the dynamic array:

int **ptrMatrix = new int*[row];
    for (int i = 0; i < row; i++)
        ptrMatrix[i] = new int[column];

回答1:


I found the solution ... it is done simply by making a temporary variable (X) and appling the following code

for (int i=0;i<columns;i++)
{
   X=matrix[row1-1][i];
   matrix[row1-1][i]=matrix[row2-1][i];
   matrix[row2-1][i]=X;
}


来源:https://stackoverflow.com/questions/33759399/swapping-two-rows-in-a-matrix

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!