【BUCT数据结构类库】6.3--程序题--图的拓扑排序算法实现

#include<iostream>
#include<vector>
#include<algorithm>
#define inf 0x3f3f3f3f
using namespace std;

//图的拓扑排序算法

//邻接矩阵法
typedef struct Mgraph{
    int Vex[100];//顶点数组
    int Edge[100][100];//边数组
    int vexnum,edgenum;//图的顶点数和边数
}Mgraph;

void TopologicalSort(Mgraph G){
    //拓扑排序
    int indegree[G.vexnum];
    for(int i=0;i<G.vexnum;i++){
        indegree[i]=0;
    }

    for(int i=0;i<G.vexnum;i++){
        for(int j=0;j<G.vexnum;j++){
            if(G.Edge[i][j]!=inf){
                indegree[j]++;//计算每个顶点的入度
            }
        }
    }
    vector<int> topo;
    for(int i=0;i<G.vexnum;i++){
        if(indegree[i]==0){
            topo.push_back(i); //把入度为0的顶点加入到拓扑序列中
        }
    }
    for(int i=0;i<topo.size();i++){
        for(int j=0;j<G.vexnum;j++){
            if(G.Edge[topo[i]][j]!=inf){
                indegree[j]--;
                if(indegree[j]==0){
                    topo.push_back(j);//把入度为0的顶点加入到拓扑序列中
                }
            }
        }
    }
    for(int i=0;i<topo.size();i++){
        cout<<topo[i]<<" "; //输出拓扑序列
    }
    cout<<endl;

}

int main(){
    Mgraph G;
    G.vexnum=6;
    G.edgenum=8;
    for (int i = 0; i < G.vexnum; i++)
    {
        for (int j = 0; j < G.vexnum; j++)
        {
            G.Edge[i][j] = inf;
        }
    }
    G.Edge[3][2]=1;
    G.Edge[4][2]=1;
    G.Edge[2][1]=1;
    G.Edge[2][5]=1;
    TopologicalSort(G);
    return 0;
}
算法学习笔记(53): 拓扑排序
输出示意图

 output:

 在前面加了个没有入度出度的0,为了和图保持一致

上图从下文转载:算法学习笔记(53): 拓扑排序 - 知乎

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

半山乱步

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

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

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

打赏作者

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

抵扣说明:

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

余额充值