leetcode题解之566

566.重塑矩阵
在MATLAB中,有一个非常有用的函数 reshape,它可以将一个矩阵重塑为另一个大小不同的新矩阵,但保留其原始数据。

给出一个由二维数组表示的矩阵,以及两个正整数r和c,分别表示想要的重构的矩阵的行数和列数。

重构后的矩阵需要将原始矩阵的所有元素以相同的行遍历顺序填充。

如果具有给定参数的reshape操作是可行且合理的,则输出新的重塑矩阵;否则,输出原始矩阵。

思路:简单题,需要注意以下R,C值的合理性
代码:

class Solution {
    public int[][] matrixReshape(int[][] nums, int r, int c) {
        if(nums == null || nums.length == 0){
            return nums;
        }
        if(r * c != nums.length * nums[0].length){
            return nums;
        }
        int[][] newNums = new int[r][c];
        int m = 0;
        int n = 0;
        for(int i = 0 ;i < nums.length; i++){
            for(int j = 0; j < nums[i].length; j++){
                if(n ==c){
                    m++;
                    n = 0;
                }
                newNums[m][n++] = nums[i][j];
                
            }
        }
        return newNums;
    }
}

猜你喜欢

转载自blog.csdn.net/greenjoe/article/details/82988507