图论应用——拓扑排序

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

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;
}
相关推荐
田梓燊18 小时前
图论 八字码
c++·算法·图论
带多刺的玫瑰1 天前
Leecode刷题C语言之从栈中取出K个硬币的最大面积和
数据结构·算法·图论
Geometry Fu2 天前
二叉树删除子树 (题目分析+C++代码实现)
数据结构·算法·图论
Petrichorzncu3 天前
算法刷题笔记——图论篇
笔记·算法·图论
岸榕.4 天前
树的连边II
算法·深度优先·图论
Python_enjoy5 天前
图论DFS:黑红树
算法·深度优先·图论
Sunday_ding5 天前
ros 机器人地图转化为gis地图
java·arcgis·图论
羑悻的小杀马特6 天前
【狂热算法篇】探秘图论之 Floyd 算法:解锁最短路径的神秘密码(通俗易懂版)
c++·算法·图论·floyd算法
啊QQQQQ7 天前
图论基础,如何快速上手图论?
图论
.Vcoistnt8 天前
Codeforces Round 976 (Div. 2) and Divide By Zero 9.0(A-E)
数据结构·c++·算法·贪心算法·动态规划·图论