会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
sfzyk
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2018年7月15日
leetcode 847. Shortest Path Visiting All Nodes 无向连通图遍历最短路径
摘要: 设计最短路径 用bfs 天然带最短路径 每一个状态是 当前的阶段 和已经访问过的节点 下面是正确但是超时的代码 class Solution: def shortestPathLength(self, graph): """ :type graph: List[List[int]] :rtype:
阅读全文
posted @ 2018-07-15 16:42 sfzyk
阅读(598)
评论(0)
推荐(0)
编辑