码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode566. Reshape the Matrix

时间:2017-04-30 16:07:11      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:return   length   java   turn   nbsp   blog   new   logs   pre   

	public int[][] func(int[][] nums,int r,int c){
		int m=nums.length;
		int k=0;
		int n=nums[0].length;
		  if(r*c!=m*n){
			return nums;
		}
		  int[][] res = new int[r][c];
		  for(int i=0;i<r;i++){
			  for(int j=0;j<c;j++,k++){
				  res[i][j]=nums[k/n][k%n];
			  }
		  }
		  return res;
		  
	}

 

Leetcode566. Reshape the Matrix

标签:return   length   java   turn   nbsp   blog   new   logs   pre   

原文地址:http://www.cnblogs.com/vector11248/p/6789520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!