代码随想录-算法训练营-番外(图论01:图论理论基础,所有可到达的路径)

bash 复制代码
day01 图论part01 
今日任务:图论理论基础/所有可到达的路径
代码随想录图论视频部分还没更新
https://programmercarl.com/kamacoder/图论理论基础.html#图的基本概念

day01

所有可达路径

邻接矩阵

复制代码
 import java.util.Scanner;
 import java.util.List;
 import java.util.ArrayList;
 ​
 public class Main{
     static List<List<Integer>> result = new ArrayList<>();
     static List<Integer> path = new ArrayList<>();
     
     public static void main(String[] args){
         Scanner sc = new Scanner(System.in);
         int n = sc.nextInt();
         int m = sc.nextInt();
         int[][] graph = new int[n + 1][n + 1];
         for(int i = 0; i < m; i++){
             graph[sc.nextInt()][sc.nextInt()] = 1;
         }
         path.add(1); //先加一个节点
         dfs(graph, 1, n); 
         if (result.isEmpty()) System.out.println(-1);
         
         for(List<Integer> pa : result){
           for (int i = 0; i < pa.size() - 1; i++) {
                 System.out.print(pa.get(i) + " ");
             }
             System.out.println(pa.get(pa.size() - 1));
         } 
     }
     
     private static void dfs(int[][] graph, int x, int n){//n就是结束节点
         if(x == n){
             result.add(new ArrayList(path));
             return;
         }
         for(int i = 1; i <= n; i++){
             if (graph[x][i] == 1) { 
                 path.add(i); 
                 dfs(graph, i, n); 
                 path.remove(path.size() - 1); 
             }
         }
         return;
     }
 }

邻接表

复制代码
 //感觉graph不用LinkedList而是直接用ArrayList也可以,因为这个场景下不涉及什么增删改而基本都是访问
 import java.util.ArrayList;
 import java.util.LinkedList;
 import java.util.List;
 import java.util.Scanner;
 ​
 public class Main {
     static List<List<Integer>> result = new ArrayList<>(); // 收集符合条件的路径
     static List<Integer> path = new ArrayList<>(); // 1节点到终点的路径
 ​
     public static void dfs(List<LinkedList<Integer>> graph, int x, int n) {
         if (x == n) { // 找到符合条件的一条路径
             result.add(new ArrayList<>(path));
             return;
         }
         for (int i : graph.get(x)) { // 找到 x指向的节点
             path.add(i); // 遍历到的节点加入到路径中来
             dfs(graph, i, n); // 进入下一层递归
             path.remove(path.size() - 1); // 回溯,撤销本节点
         }
     }
 ​
     public static void main(String[] args) {
         Scanner scanner = new Scanner(System.in);
         int n = scanner.nextInt();
         int m = scanner.nextInt();
 ​
         // 节点编号从1到n,所以申请 n+1 这么大的数组
         List<LinkedList<Integer>> graph = new ArrayList<>();
         for (int i = 0; i <= n; i++) {
             graph.add(new LinkedList<>());
         }
 ​
         while (m-- > 0) {
             int s = scanner.nextInt();
             int t = scanner.nextInt();
             // 使用邻接表表示 s -> t 是相连的
             graph.get(s).add(t);
         }
 ​
         path.add(1); // 无论什么路径已经是从1节点出发
         dfs(graph, 1, n); // 开始遍历
 ​
         // 输出结果
         if (result.isEmpty()) System.out.println(-1);
         for (List<Integer> pa : result) {
             for (int i = 0; i < pa.size() - 1; i++) {
                 System.out.print(pa.get(i) + " ");
             }
             System.out.println(pa.get(pa.size() - 1));
         }
     }
 }

感谢大佬分享:

代码随想录算法训练营第五十天|Day50 图论_本关任务:创建邻接表存储的无向图,并输出图的邻接表。-CSDN博客

相关推荐
melck5 分钟前
liunx日志查询常用命令总结
java·服务器·网络
SweetCode8 分钟前
裴蜀定理:整数解的奥秘
数据结构·python·线性代数·算法·机器学习
守护者17011 分钟前
JAVA学习-练习试用Java实现“实现一个Hadoop程序,使用Hive进行复杂查询和数据筛查”
java·学习
程序员 小柴16 分钟前
docker的与使用
java·docker·eureka
ゞ 正在缓冲99%…21 分钟前
leetcode76.最小覆盖子串
java·算法·leetcode·字符串·双指针·滑动窗口
xuanjiong22 分钟前
纯个人整理,蓝桥杯使用的算法模板day2(0-1背包问题),手打个人理解注释,超全面,且均已验证成功(附带详细手写“模拟流程图”,全网首个
算法·蓝桥杯·动态规划
Seven9736 分钟前
【Guava】并发编程ListenableFuture&Service
java
WannaRunning36 分钟前
浅谈Tomcat数据源连接池
java·oracle·tomcat
惊鸿.Jh41 分钟前
【滑动窗口】3254. 长度为 K 的子数组的能量值 I
数据结构·算法·leetcode
明灯L42 分钟前
《函数基础与内存机制深度剖析:从 return 语句到各类经典编程题详解》
经验分享·python·算法·链表·经典例题