给定一个矩阵 A, 返回 A 的转置矩阵。
矩阵的转置是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。
示例 1:
输入:[[1,2,3],[4,5,6],[7,8,9]]
输出:[[1,4,7],[2,5,8],[3,6,9]]
示例 2:
输入:[[1,2,3],[4,5,6]]
输出:[[1,4],[2,5],[3,6]]
提示:
1 <= A.length <= 1000
1 <= A[0].length <= 1000
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/transpose-matrix
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
1,先把举证的行列调转构造新的空间
2,用两个for循环,调转存入新的数组中
/**
* Return an array of arrays of size *returnSize.
* The sizes of the arrays are returned as *returnColumnSizes array.
* Note: Both returned array and *columnSizes array must be malloced, assume caller calls free().
*/
int** transpose(int** A, int ASize, int* AColSize, int* returnSize, int** returnColumnSizes){
int **retArr = (int **)malloc(sizeof(int *) * (*AColSize));
*returnSize = * AColSize;
for(int i = 0; i < *AColSize; i++) {
retArr[i] = (int *)malloc(sizeof(int) * ASize);
returnColumnSizes[0][i] = ASize;
}
for(int i = 0; i < ASize ; i++) {
for(int j = 0; j < *AColSize; j++) {
retArr[j][i] = A[i][j];
}
}
return retArr;
}