图论应用——拓扑排序

拓扑排序的原理和宽度优先搜索差不多

cpp 复制代码
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

const int N = 100010;
int n,m;
int h[N],e[N],ne[N],idx;
int q[N],d[N];

void add(int a,int b)
{
    e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}

bool topsort()
{
    int hh=0,tt=-1;
    for(int i=1;i<=n;i++)
        if(!d[i]) q[++tt]=i;
    while(hh<=tt)
    {
        int t = q[hh++];
        for(int i=h[t];i!=-1;i=ne[i])
        {
            int j = e[i];
            if(--d[j]==0)
            {
                q[++tt]=j;
            }
        }
    }
    return tt==n-1;
}

int main(void)
{
    scanf("%d%d", &n,&m);
    memset(h, -1, sizeof h);
    while (m -- )
    {
        int a,b;
        scanf("%d%d",&a,&b);
        add(a,b);
        d[b]++;
    }
    if(topsort())
    {
        for(int i=0;i<n;i++)
            printf("%d ",q[i]);
    }
    else puts("-1");
    return 0;
}
相关推荐
_小草鱼_3 小时前
【搜索与图论】DFS算法(深度优先搜索)
算法·深度优先·图论·回溯·递归
美好的事情能不能发生在我身上4 小时前
Hot100中的:图论专题
图论
不染尘.12 小时前
最小生成树算法
开发语言·数据结构·c++·算法·图论
I_LPL13 小时前
day58 代码随想录算法训练营 图论专题11
数据结构·算法·图论
重生之后端学习1 天前
287. 寻找重复数
数据结构·算法·leetcode·深度优先·图论
I_LPL2 天前
day57 代码随想录算法训练营 图论专题10
图论
jing-ya2 天前
day 55 图论part7
java·数据结构·算法·图论
技术净胜2 天前
Gephi基于图论与物理模拟的网络可视化原理
数据分析·图论
落地加湿器2 天前
Acwing算法课图论与搜索笔记
c++·笔记·算法·图论·dfs·bfs·图搜索算法
ccLianLian2 天前
图论·二分图
图论