867. Transpose Matrix - LeetCode
Posted okokabcd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了867. Transpose Matrix - LeetCode相关的知识,希望对你有一定的参考价值。
Question
Solution
题目大意:矩阵的转置
思路:定义一个转置后的二维数组,遍历原数组,在赋值时行号列号互换即可
Java实现:
public int[][] transpose(int[][] A) {
int[][] B = new int[A[0].length][A.length];
for (int i = 0; i < A.length; i++) {
for (int j = 0; j < A[0].length; j++) {
B[j][i] = A[i][j];
}
}
return B;
}
以上是关于867. Transpose Matrix - LeetCode的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode_easy867. Transpose Matrix
867. Transpose Matrix - LeetCode
LeetCode 867 Transpose Matrix 解题报告
[LeetCode&Python] Problem 867. Transpose Matrix