LeetCode 867. 转置矩阵
程序员文章站
2024-03-22 14:08:52
...
1. 题目
给定一个矩阵 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
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
2. 解题
class Solution {
public:
vector<vector<int>> transpose(vector<vector<int>>& A) {
int i, j;
vector<int> temp;
vector<vector<int>> ans;
for(j = 0; j < A[0].size(); ++j)
{
temp.clear();
for(i = 0; i < A.size(); ++i)
{
temp.push_back(A[i][j]);
}
ans.push_back(temp);
}
return ans;
}
};
36 ms 11.7 MB
优化,预先分配空间
class Solution {
public:
vector<vector<int>> transpose(vector<vector<int>>& A) {
int i, j, x, y = 0, m = A.size(), n = A[0].size();
vector<vector<int>> ans(n,vector<int>(m));
for(i = 0; i < m; ++i)
{
x = 0;
for(j = 0; j < n; ++j)
{
ans[x++][y] = A[i][j];
}
y++;
}
return ans;
}
};
20 ms 9.9 MB