Skip to content

Latest commit

 

History

History
83 lines (56 loc) · 1.63 KB

[0847] 访问所有节点的最短路径.md

File metadata and controls

83 lines (56 loc) · 1.63 KB
title tags categories author comments updated permalink mathjax top description date
[0847] 访问所有节点的最短路径
leetcode
leetcode
张学志
true
false
false
false
...
2019-12-31 16:14:07 -0800

题目描述

给出 graph 为有 N 个节点(编号为 0, 1, 2, ..., N-1)的无向连通图。 

graph.length = N,且只有节点 i 和 j 连通时,j != i 在列表 graph[i] 中恰好出现一次。

返回能够访问所有节点的最短路径的长度。你可以在任一节点开始和停止,也可以多次重访节点,并且可以重用边。

 

示例 1:

输入:[[1,2,3],[0],[0],[0]]
输出:4
解释:一个可能的路径为 [1,0,2,0,3]

示例 2:

输入:[[1],[0,2,4],[1,3,4],[2],[1,2]]
输出:4
解释:一个可能的路径为 [0,1,4,2,3]

 

提示:

  1. 1 <= graph.length <= 12
  2. 0 <= graph[i].length < graph.length
Related Topics
  • 广度优先搜索
  • 动态规划
  • 题目代码

    class Solution {
    public:
        int shortestPathLength(vector<vector<int>>& graph) {
    
        }
    };

    题目解析

    方法一

    方法二

    方法三