当前位置: 首页 > article >正文

代码随想录算法训练营第五十五天| 图论入门

今天入门图论的基本理论,做了深度优先遍历图的例子


797.所有可能的路径

题目链接

解题过程

  • 用dfs遍历每一个边

力扣

class Solution {
public:
    vector<vector<int>>result;
    vector<int>path;
    void dfs(vector<vector<int>>& graph) {
        if (path.back() == graph.size() - 1) {
            result.push_back(path);
            return;
        }
        int points = path.back();
        for (int point : graph[points]) {
            path.push_back(point);
            dfs(graph);
            path.pop_back();
        }
    }

    vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) {
        path.push_back(0);
        dfs(graph);
        return result;
    }
};

ACM

#include<iostream>
#include<vector>
#include<list>
using namespace std;
int n, m;
vector<vector<int>>result;
vector<int>path;
void dfs(vector<list<int>>&graph) {
    if (path.back() == n) {
        result.push_back(path);
        return;
    }
    int point = path.back();
    for (int i : graph[point]) {
        path.push_back(i);
        dfs(graph);
        path.pop_back();
    }
}

int main() {
    cin >> n >> m;
    vector<list<int>>graph(n + 1);
    while (m--) {
        int s, t;
        cin >> s >> t;
        graph[s].push_back(t);
    }
    path.push_back(1);
    dfs(graph);
    if (result.size() == 0) cout << -1 << endl;
    for (vector<int>vec : result) {
        for (int i = 0; i < vec.size() - 1; i++) {
            cout << vec[i] << " ";
        }
        cout << vec.back() << endl;
    }
}

http://www.kler.cn/a/350357.html

相关文章:

  • 审计文件标识作为水印打印在pdf页面边角
  • 代码中使用 Iterable<T> 作为方法参数的解释
  • 2025CSP-J 冲刺训练(3):前缀和差分
  • WPS数据分析000001
  • KubeSphere部署安装,接入KubeKey安装的k8s集群
  • 算法随笔_12:最短无序子数组
  • C#源码安装ZedGraph曲线显示组件
  • flutter 使用三方/自家字体
  • 深度学习:LSTM循环神经网络实现评论情感分析
  • 【rk3229 android10 多wifi模块兼容提示bt报错问题】
  • PHP cURL 教程
  • 从零实现llama3(学习)
  • PLM预训练语言模型Pre-trained Language Model
  • 【C#生态园】从身份认证到日志记录:C#开发必备库全面解析
  • 重学SpringBoot3-集成Spring Security(二)
  • VAE(与GAN)
  • 简单谈谈Spring 中Aware是什么
  • 【优选算法】(第四十二篇)
  • 网际报文协议ICMP及ICMP重定向实例详解2
  • 静态变量、变量作用域、命名空间
  • 当代世界著名哲学家起名大师颜廷利:化学与化雪,科技与饥渴
  • Jmeter脚本录制:抓取IOS手机请求包
  • vue特效,一片动态星空
  • 开源的介绍
  • Linux之HugePage的原理与使用
  • 国家基本药物目录数据库查询3种方法(2018、2012、2009年版)