LeetCode-566. Reshape the Matrix

题目

In MATLAB, there is a very useful function called 'reshape', which can reshape a matrix into a new one with different size but keep its original data.

You're given a matrix represented by a two-dimensional array, and two positive integers r and c representing the row number and column number of the wanted reshaped matrix, respectively.

The reshaped matrix need to 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: nums = [[1,2], [3,4]]r = 1, c = 4
Output: [[1,2,3,4]]
Explanation:The row-traversing of nums is [1,2,3,4]. The new reshaped matrix is a 1 * 4 matrix, fill it row by row by using the previous list.

Example 2:
Input: nums = [[1,2], [3,4]]r = 2, c = 4
Output: [[1,2], [3,4]]
Explanation:There is no way to reshape a 2 * 2 matrix to a 2 * 4 matrix. So output the original matrix.

Note:
The height and width of the given matrix is in range [1, 100].
The given r and c are all positive.

Subscribe to see which companies asked this question.

代码

func matrixReshape(_ nums: [[Int]], _ r: Int, _ c: Int) -> [[Int]] {
    var tmp: [Int] = nums.flatMap{$0}
    guard tmp.count % (r * c) == 0 else {
        return nums
    }
    var arr: [[Int]] = []
    for i in 0..<r {
        var t: [Int] = []
        for j in 0..<c {
            t.append(tmp[i*c+j])
        }
        arr.append(t)
    }
    return arr
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,787评论 0 33
  • 题目 In MATLAB, there is a very useful function called 'res...
    Eazow阅读 204评论 0 0
  • 很长一段时间,在兼职的地方感觉把自己培养成了一个脾气很大,很受不了比自己弱的人,于是眉头紧皱到了自己都能感受得到,...
    十亩鱼干阅读 328评论 0 0
  • 饮中八仙包括李白、贺知章、李适之、李琎、崔宗之、苏晋、张旭、焦遂。 指唐朝嗜酒好仙的八位学者名人,亦称酒中八仙或醉...
    天马酒仙阅读 966评论 0 1
  • 额,今天勉强写了一篇英语作文,勉勉强强糊弄完了一篇英语作文,那时候突然发现自己好想玩,因为有电脑吧?不过还是搞了半...
    蓝道阅读 164评论 0 0