其他分享
首页 > 其他分享> > Leetcode刷题100天—566. 重塑矩阵(数组)—day25

Leetcode刷题100天—566. 重塑矩阵(数组)—day25

作者:互联网

前言:

作者:神的孩子在歌唱

大家好,我叫运智

image-20210901154436808

566. 重塑矩阵

难度简单233收藏分享切换为英文接收动态反馈

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

给你一个由二维数组 mat 表示的 m x n 矩阵,以及两个正整数 rc ,分别表示想要的重构的矩阵的行数和列数。

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

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

示例 1:

img

输入:mat = [[1,2],[3,4]], r = 1, c = 4
输出:[[1,2,3,4]]

示例 2:

img

输入:mat = [[1,2],[3,4]], r = 2, c = 4
输出:[[1,2],[3,4]]

提示:

package 数组;
/*
 * https://leetcode-cn.com/problems/reshape-the-matrix/submissions/
 */
public class _566_重塑矩阵 {
    public int[][] matrixReshape(int[][] mat, int r, int c) {
//    	定义数组
    	int[][] res=new int[r][c];
//    	获取二维数组中一维数组的长度
    	int n=mat[0].length;
        int m=mat.length;
        // 如果不符合转换就直接返回
        if ( m* n != r * c) {
            return mat;
        }
//    	通过for循环遍历
    	for(int i=0;i<m*n;i++) {
    		res[i/c][i%c]=mat[i/n][i%n];
    	}
    	return res;
    }
}

本人csdn博客:https://blog.csdn.net/weixin_46654114

转载说明:跟我说明,务必注明来源,附带本人博客连接。

标签:mat,day25,res,矩阵,566,int,重塑,数组,100
来源: https://blog.csdn.net/weixin_46654114/article/details/120365375