请将图转换成以某个结点为根结点的树

题目要求:请将图转换为以某个结点为根结点的数。然后,输出所有从根结点到叶子结点的路径。

例如:
在这里插入图片描述
示例输入,

6
0 1
1 2
1 4
3 4
4 5

期望输出,

1 0 
1 2 
1 4 3 
1 4 5 

解题思路1:创建一个全局布尔型数组st,访问过的结点不再访问,记得恢复现场。C++代码如下,

#include <iostream>
#include <vector>

using namespace std;

int n;
vector<vector<int>> g;
vector<int> path;
vector<bool> st;

void dfs(int node) {
    path.emplace_back(node);
    st[node] = true;
    
    bool has_succ = false;
    for (auto nextnode : g[node]) {
        if (st[nextnode] == false) {
            has_succ = true;
            break;
        }
    }
    
    if (has_succ == false) {//叶子结点
        for (auto node : path) {
            cout << node << " ";
        }
        cout << endl;
    } else {
        for (auto nextnode : g[node]) {
            if (st[nextnode] == false) {
                dfs(nextnode); //进一步递归
            }
        }
    }
    
    path.pop_back();
    st[node] = false;
    return;
}

int main() {
    cin >> n;
    g.resize(n);
    st.resize(n, false);
    int a, b;
    while (cin >> a >> b) {
        g[a].emplace_back(b);
        g[b].emplace_back(a);
    }
    
    //输出以1号结点为根节点到所有叶子结点的路径
    dfs(1);
    
    return 0;
}

解题思路2(推荐):深搜时传入当前结点和其父节点。C++代码如下,

#include <iostream>
#include <vector>

using namespace std;

int n;
vector<vector<int>> g;
vector<int> path;

void dfs(int node, int fa) {
    path.emplace_back(node);
    
    bool has_succ = false;
    for (auto nextnode : g[node]) {
        if (nextnode != fa) {
            has_succ = true;
            break;
        }
    }
    
    if (has_succ == false) {//叶子结点
        for (auto node : path) {
            cout << node << " ";
        }
        cout << endl;
    } else {
        for (auto nextnode : g[node]) {
            if (nextnode != fa) {
                dfs(nextnode, node); //进一步递归
            }
        }
    }
    
    path.pop_back();
    return;
}

int main() {
    cin >> n;
    g.resize(n);
    int a, b;
    while (cin >> a >> b) {
        g[a].emplace_back(b);
        g[b].emplace_back(a);
    }
    
    //输出以1号结点为根节点到所有叶子结点的路径
    dfs(1, -1);
    
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

YMWM_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值