LeetCode刷题(123)~转置矩阵

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode刷题(123)~转置矩阵相关的知识,希望对你有一定的参考价值。


题目描述

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

解答 By 海轰

提交代码

vector<vector<int>> transpose(vector<vector<int>>& A) 
vector<vector<int>> ans;
for(int i=0;i<A[0].size();++i)

vector<int> temp;
for(int j=0;j<A.size();++j)

temp.push_back(A[j][i]);

ans.push_back(temp);

return ans;

运行代码

LeetCode刷题(123)~转置矩阵_提交代码


提交代码

vector<vector<int>> transpose(vector<vector<int>>& A) 
int row=A.size();
int col=A[0].size();
vector<vector<int>> ans(col);
for(int i=0;i<col;++i)
for(int j=0;j<row;++j)
ans[i].push_back(A[j][i]);
return ans;

运行结果

LeetCode刷题(123)~转置矩阵_提交代码_02

题目来源

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/transpose-matrix


以上是关于LeetCode刷题(123)~转置矩阵的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题-48旋转图像

leetcode之模拟刷题总结3

LeetCode 867. 转置矩阵

《LeetCode之每日一题》:72.转置矩阵

LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行

leetcode 867. 转置矩阵(Transpose Matrix)