208.(867)转置矩阵

it2023-09-21  62

题目描述:

给定一个矩阵 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

思路:

1、A矩阵的行数和列数分别为转置后的列数和行数

2、res[i][j]=A[j][i]

代码:

class Solution { public: vector<vector<int>> transpose(vector<vector<int>>& A) { int m=A.size(),n=A[0].size(); vector<vector<int>>res(n,vector<int>(m)); for(int i=0;i<m;i++) for(int j=0;j<n;j++) res[j][i]=A[i][j]; return res; } };

执行效率:

执行用时:20 ms, 在所有 C++ 提交中击败了72.66%的用户

内存消耗:10 MB, 在所有 C++ 提交中击败了32.69%的用户

最新回复(0)