566. Reshape the Matrix
2026/1/12大约 1 分钟约 368 字
566. Reshape the Matrix
难度: Easy
题目描述
In MATLAB, there is a handy function called reshape which can reshape an m x n matrix into a new one with a different size r x c keeping its original data.
You are given an m x n matrix mat and two integers r and c representing the number of rows and the number of columns of the wanted reshaped matrix.
The reshaped matrix should be filled with all the elements of the original matrix in the same row-traversing order as they were.
If the reshape operation with given parameters is possible and legal, output the new reshaped matrix; Otherwise, output the original matrix.
Example 1:

Input: mat = [[1,2],[3,4]], r = 1, c = 4 Output: [[1,2,3,4]]
Example 2:

Input: mat = [[1,2],[3,4]], r = 2, c = 4 Output: [[1,2],[3,4]]
Constraints:
m == mat.lengthn == mat[i].length1 <= m, n <= 100-1000 <= mat[i][j] <= 10001 <= r, c <= 300
解题思路
代码实现
解决方案
java
class Solution {
public int[][] matrixReshape(int[][] mat, int r, int c) {
int m = mat.length;
int n = mat[0].length;
if (m * n > r * c) {
return mat;
}
int targetM = 0;
int targetN = 0;
int[][] res = new int[r][c];
if (r >= m && c >= n) {
return mat;
}
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
targetM = targetN / c;
res[targetM][targetN % c] = mat[i][j];
targetN++;
}
}
return res;
}
}