1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/水域大小 [pond-sizes-lcci].html

17 lines
670 B
HTML
Raw Normal View History

2022-03-27 20:38:29 +08:00
<p>你有一个用于表示一片土地的整数矩阵<code>land</code>该矩阵中每个点的值代表对应地点的海拔高度。若值为0则表示水域。由垂直、水平或对角连接的水域为池塘。池塘的大小是指相连接的水域的个数。编写一个方法来计算矩阵中所有池塘的大小返回值需要从小到大排序。</p>
<p><strong>示例:</strong></p>
<pre><strong>输入:</strong>
[
[0,2,1,0],
[0,1,0,1],
[1,1,0,1],
[0,1,0,1]
]
<strong>输出:</strong> [1,2,4]
</pre>
<p><strong>提示:</strong></p>
<ul>
<li><code>0 < len(land) <= 1000</code></li>
<li><code>0 < len(land[i]) <= 1000</code></li>
</ul>