mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
36 lines
1.7 KiB
HTML
36 lines
1.7 KiB
HTML
<p>You are given two integers <code>m</code> and <code>n</code>, which represent the dimensions of a matrix.</p>
|
|
|
|
<p>You are also given the <code>head</code> of a linked list of integers.</p>
|
|
|
|
<p>Generate an <code>m x n</code> matrix that contains the integers in the linked list presented in <strong>spiral</strong> order <strong>(clockwise)</strong>, starting from the <strong>top-left</strong> of the matrix. If there are remaining empty spaces, fill them with <code>-1</code>.</p>
|
|
|
|
<p>Return <em>the generated matrix</em>.</p>
|
|
|
|
<p> </p>
|
|
<p><strong>Example 1:</strong></p>
|
|
<img alt="" src="https://assets.leetcode.com/uploads/2022/05/09/ex1new.jpg" style="width: 240px; height: 150px;" />
|
|
<pre>
|
|
<strong>Input:</strong> m = 3, n = 5, head = [3,0,2,6,8,1,7,9,4,2,5,5,0]
|
|
<strong>Output:</strong> [[3,0,2,6,8],[5,0,-1,-1,1],[5,2,4,9,7]]
|
|
<strong>Explanation:</strong> The diagram above shows how the values are printed in the matrix.
|
|
Note that the remaining spaces in the matrix are filled with -1.
|
|
</pre>
|
|
|
|
<p><strong>Example 2:</strong></p>
|
|
<img alt="" src="https://assets.leetcode.com/uploads/2022/05/11/ex2.jpg" style="width: 221px; height: 60px;" />
|
|
<pre>
|
|
<strong>Input:</strong> m = 1, n = 4, head = [0,1,2]
|
|
<strong>Output:</strong> [[0,1,2,-1]]
|
|
<strong>Explanation:</strong> The diagram above shows how the values are printed from left to right in the matrix.
|
|
The last space in the matrix is set to -1.</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= m, n <= 10<sup>5</sup></code></li>
|
|
<li><code>1 <= m * n <= 10<sup>5</sup></code></li>
|
|
<li>The number of nodes in the list is in the range <code>[1, m * n]</code>.</li>
|
|
<li><code>0 <= Node.val <= 1000</code></li>
|
|
</ul>
|