[867. 转置矩阵]

[867. 转置矩阵]

给定一个矩阵 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:直观方法,对数组进行遍历,然后取出数据进行存放

class Solution {
public:
    vector<vector<int>> transpose(vector<vector<int>>& A) {
        vector<vector<int>>res;
        int rowLen = A.size(); // 行数
        int lineLen = A[0].size(); // 列数
        for (int i = 0; i<lineLen; i++) {
            vector<int>temp;
            for (int j = 0; j<rowLen; j++) {
                temp.push_back(A[j][i]);
            }
            res.push_back(temp);
        }
        return res;
    }
};
原文地址:https://www.cnblogs.com/wangdongfang/p/13833009.html