LeetCode(867)--转置矩阵
程序员文章站
2024-03-22 11:12:28
...
题目
867.转置矩阵
给你一个二维整数数组 matrix, 返回 matrix 的 转置矩阵 。
矩阵的 转置 是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。
示例 1:
输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
输出:[[1,4,7],[2,5,8],[3,6,9]]
示例 2:
输入:matrix = [[1,2,3],[4,5,6]]
输出:[[1,4],[2,5],[3,6]]
提示:
m == matrix.length
n == matrix[i].length
1 <= m, n <= 1000
1 <= m * n <= 105
-109 <= matrix[i][j] <= 109
题解(Java)
转置矩阵的索引变换:(i,j) ->(j,i)
class Solution
{
public int[][] transpose(int[][] matrix)
{
int[][] result = new int[matrix[0].length][matrix.length];
//利用索引变换公式(i,j)->(j,i)
for(int index = 0;index < matrix.length;index++)
{
for(int scan = 0;scan < matrix[index].length;scan++)
{
result[scan][index] = matrix[index][scan];
}
}
return result;
}
}
上一篇: #define
推荐阅读
-
LeetCode.867-转置矩阵(Transpose Matrix)
-
Leetcode#867. Transpose Matrix(转置矩阵)
-
LeetCode 867 转置矩阵
-
LeetCode(867)--转置矩阵
-
Leetcode 867.转置矩阵(Transpose Matrix)
-
LeetCode刷题记录——第867题(转置矩阵)
-
LeetCode.867-转置矩阵(Transpose Matrix)
-
C#LeetCode刷题之#867-转置矩阵(Transpose Matrix)
-
【leetcode】867 转置矩阵
-
Leetcode867.Transpose Matrix转置矩阵