美文网首页leetcode articles
All Paths From Source to Target

All Paths From Source to Target

作者: gattonero | 来源:发表于2018-03-20 18:09 被阅读31次

    问题

    给出一二维数组形式的有向无环图,求图中两点之间的所有路径

    解决

    • 回溯即可

    Tips

    • 用java写的时候注意一下List.remove方法的两个重载,remove(int)是根据下标来移除,应该使用remove(Object)

    相关文章

      网友评论

        本文标题:All Paths From Source to Target

        本文链接:https://www.haomeiwen.com/subject/filbqftx.html