[用Golang刷LeetCode之 7] 566. Reshape the Matrix

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

題目

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:

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

題目大意:

給定二維矩陣nums,將其轉化為r行c列的新矩陣。若無法完成轉化,返回原矩陣。

注意:

給定矩陣的高度和寬度範圍[1, 100]
r和c都是正數

解題思路

  1. origin_r * origin_c 的矩陣 reshape為 rc的矩陣,需要滿足:
    origin_r * origin_c=r
    c
  2. 元素位置對應的關係
    如果將矩陣橫向展開為一維數組,元素個數為n=origin_r * origin_c
    在元素在一維數組中對應的位置i:
    原矩陣位置[i/origin_c,i%origin_c]
    新矩陣位置[i/c,i%c]

代碼

reshapeMatrix.go

package _566_Reshape_Matriximport "fmt"func MatrixReshape(nums [][]int, r int, c int) [][]int {    var chanInt chan int    chanInt = make(chan int)    var length int    go func(len *int) {        for _, v1 := range nums {            for _, v := range v1 {                (*len)++                fmt.Printf("len1:%+v\n", length)                chanInt <- v            }        }        for {            chanInt <- 0        }    }(&length)    var ret [][]int    for i := 0; i < r; i++ {        var lineRet []int        for j := 0; j < c; j++ {            v := <- chanInt            lineRet = append(lineRet, v)        }        ret = append(ret, lineRet)    }    fmt.Printf("len2:%+v\n", length)    fmt.Printf("ret:%+v\n", ret)    if r * c != length {        return nums    }    return ret}

測試

reshapeMatrix_test.go

package _566_Reshape_Matriximport "testing"func TestMatrixReshape(t *testing.T) {    input := [][]int{        {1, 2},        {3, 4},    }    ret := MatrixReshape(input, 1, 4)    t.Logf("%+v", ret)}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.