·
·
文章目录
  1. 题目介绍
  2. 解题思路

Reshape the Matrix

题目介绍

LeetCode 566. Reshape the Matrix

解题思路

思路很简单,二维数组间的转换 ans[i/c][i%c] = nums[i/col][i%col]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
func matrixReshape(_ nums: [[Int]], _ r: Int, _ c: Int) -> [[Int]] {
if nums.count * nums[0].count != r * c {
// 不可以转换
return nums
}
// 可以转换
var ans = [[Int]](repeating: [Int](repeating: 0, count: c), count: r)
for i in 0..<r*c {
ans[i/c][i%c] = nums[i/nums[0].count][i%nums[0].count]
}
return ans
}
}
**版权声明**

Ivan’s Blog by Ivan Ye is licensed under a Creative Commons BY-NC-ND 4.0 International License.
叶帆创作并维护的叶帆的博客博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证

本文首发于Ivan’s Blog | 叶帆的博客博客( http://yeziahehe.com ),版权所有,侵权必究。

本文链接:http://yeziahehe.com/2020/03/02/ReshapeTheMatrix/

支持一下
扫一扫,支持yeziahehe
  • 微信扫一扫
  • 支付宝扫一扫