由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - shortest path problem
相关主题
shortest path in matrixG题求解迷津
请教一道面试题,判断迷宫有没有解面试复习总结
[算法] word ladder problem问一道数据结构题
请问一道google面试题A problem.
问个google的面试题。a question on finding longest path between two vertices
问一个word ladder的题目一道G题
求问:游戏中比较自然的路径寻找算法有啥简单方案? (转载)dynamical programming
edit distance vs. word ladderPrint all paths from root to leafs in a binary tree
相关话题的讨论汇总
话题: shortest话题: path话题: point话题: need话题: starting
进入JobHunting版参与讨论
1 (共1页)
r*******y
发帖数: 1081
1
. . . . e
. . x . .
. s . x .
. . . . .
Need to find a shortest path from starting s to ending e
and can not pass through the point marked with x
At each point we can go right, left, up or down.
Thanks.
D*******e
发帖数: 151
2
Do BFS starting from e. Maintain the depth during search. Return depth the
first time arriving at s.
1 (共1页)
进入JobHunting版参与讨论
相关主题
Print all paths from root to leafs in a binary tree问个google的面试题。
问一道面试题问一个word ladder的题目
leetcode题目求问:游戏中比较自然的路径寻找算法有啥简单方案? (转载)
MS面试题edit distance vs. word ladder
shortest path in matrixG题求解迷津
请教一道面试题,判断迷宫有没有解面试复习总结
[算法] word ladder problem问一道数据结构题
请问一道google面试题A problem.
相关话题的讨论汇总
话题: shortest话题: path话题: point话题: need话题: starting