1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-13 01:15:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2025-09-29 14:43:44 +08:00
parent 2862a227c4
commit 13f2098086
4409 changed files with 168933 additions and 166256 deletions

View File

@@ -1,4 +1,4 @@
<p>给你一个有&nbsp;<code>n</code>&nbsp;个节点的 <strong>有向无环图DAG</strong>,请你找出所有从节点 <code>0</code>&nbsp;到节点 <code>n-1</code>&nbsp;的路径并输出(<strong>不要求按特定顺序</strong></p>
<p>给你一个有&nbsp;<code>n</code>&nbsp;个节点的 <strong>有向无环图DAG</strong>,请你找出从节点 <code>0</code>&nbsp;到节点 <code>n-1</code>&nbsp;所有路径并输出(<strong>不要求按特定顺序</strong></p>
<p><meta charset="UTF-8" />&nbsp;<code>graph[i]</code>&nbsp;是一个从节点 <code>i</code> 可以访问的所有节点的列表(即从节点 <code>i</code> 到节点&nbsp;<code>graph[i][j]</code>存在一条有向边)。</p>