-
题目
Given a matrix
A, return the transpose ofA.The transpose of a matrix is the matrix flipped over it's main diagonal, switching the row and column indices of the matrix.
Example 1:
Input: [[1,2,3],[4,5,6],[7,8,9]] Output: [[1,4,7],[2,5,8],[3,6,9]]Example 2:
Input: [[1,2,3],[4,5,6]] Output: [[1,4],[2,5],[3,6]]
-
题目大意&解题思路
题目的意思其实就是将数组的行列互换一下。
-
实现代码
vector<vector<int>> transpose(vector<vector<int>>& A) {
vector<vector<int>> res;
for( int i = 0; i < A[0].size(); ++i ){ /*行数*/
vector<int> col;
for( int j = 0; j < A.size(); ++j ) /*列数*/
temp.push_back(A[j][i]);
res.push_back(col);
}
return res;
}
-
实验结果