博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode讲解--797. All Paths From Source to Target
阅读量:6695 次
发布时间:2019-06-25

本文共 1430 字,大约阅读时间需要 4 分钟。

797. All Paths From Source to Target

Given a directed, acyclic graph of N nodes. Find all possible paths from node 0 to node N-1, and return them in any order.

The graph is given as follows: the nodes are 0, 1, ..., graph.length - 1. graph[i] is a list of all nodes j for which the edge (i, j) exists.

Example:Input: [[1,2], [3], [3], []] Output: [[0,1,3],[0,2,3]] Explanation: The graph looks like this:0--->1|    |v    v2--->3There are two paths: 0 -> 1 -> 3 and 0 -> 2 -> 3.

Note:

  • The number of nodes in the graph will be in the range [2, 15].
  • You can print different paths in any order, but you should keep the order of nodes inside one path.

这一题考察的是图的深度优先遍历,要注意的点是:回溯的时候如何清除掉record中的数据,只保留到当前节点的数据,之后的数据需要重新填充。刚开始我是用的一个record,企图通过清空当前节点之后的数据,后来发现不对,record必须是多个,否则我给result添加的record就会全部相同。所以只能通过new和深拷贝来完成这个目标。

java代码

class Solution {    List
> result = new LinkedList
>(); public List
> allPathsSourceTarget(int[][] graph) { int index=0; for(int x:graph[index]){ List
record = new LinkedList<>(); record.add(0); record.add(x); depthFirst(graph, x, record); } return result; } public void depthFirst(int[][] graph, int index, List
record){ if(index==graph.length-1){ result.add(record); return; } if(graph[index]==null){ return; } for(int x:graph[index]){ record.add(x); int size = record.size(); depthFirst(graph, x, record); List
temp = new LinkedList
(); for(int i=0;i

转载地址:http://nhvoo.baihongyu.com/

你可能感兴趣的文章
JSLint检测Javascript语法规范
查看>>
Android内存优化之内存泄漏
查看>>
HTTP 协议知识点总结(一)
查看>>
界面无小事(八):RecyclerView增删item
查看>>
一起看一下主流应用使用了哪些三方库
查看>>
Mysql 数据库水平分表 存储过程
查看>>
原生js系列之DOM工厂模式
查看>>
定制化你的ReactNative底部导航栏
查看>>
git pull命令
查看>>
git管理复杂项目代码
查看>>
整理的最全 python常见面试题(基本必考)
查看>>
Docker完全自学手册
查看>>
kotlin之plus、copyOf、reverse、forEach、filter、map、reduce、fold等函数解释和使用
查看>>
【许晓笛】 EOS 智能合约案例解析(2)
查看>>
Qtum量子链漏洞赏金计划正式开启
查看>>
看完Java的动态代理技术——Pythoner笑了
查看>>
【Python3网络爬虫开发实战】4-解析库的使用-3 使用pyquery
查看>>
策略模式-Strategy Pattern
查看>>
ANCS推送简介
查看>>
redux源码解读
查看>>