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

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


797.所有可能的路径

题目链接

解题过程

  • 用dfs遍历每一个边

力扣

cpp 复制代码
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

cpp 复制代码
#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;
    }
}
相关推荐
Swift社区2 小时前
LeetCode - #139 单词拆分
算法·leetcode·职场和发展
Kent_J_Truman3 小时前
greater<>() 、less<>()及运算符 < 重载在排序和堆中的使用
算法
IT 青年3 小时前
数据结构 (1)基本概念和术语
数据结构·算法
Dong雨4 小时前
力扣hot100-->栈/单调栈
算法·leetcode·职场和发展
SoraLuna4 小时前
「Mac玩转仓颉内测版24」基础篇4 - 浮点类型详解
开发语言·算法·macos·cangjie
liujjjiyun4 小时前
小R的随机播放顺序
数据结构·c++·算法
¥ 多多¥4 小时前
c++中mystring运算符重载
开发语言·c++·算法
trueEve5 小时前
SQL,力扣题目1369,获取最近第二次的活动
算法·leetcode·职场和发展
天若有情6735 小时前
c++框架设计展示---提高开发效率!
java·c++·算法
ahadee5 小时前
蓝桥杯每日真题 - 第19天
c语言·vscode·算法·蓝桥杯