way:在图里面能延伸的越远,deep越大,说明它能从自己延伸很长到别的节点(别的节点一定有入度),它越可能没有入度。
#include<iostream>
#include<vector>
#include<map>
#include<set>
#include<algorithm>
using namespace std;class Node
{
public:int label;vector<Node *> neighbors;Node(){}Node(int x){label=x;}
};class Record
{
public:Node* node;int deep;Record(Node* n, int deep){node=n;this->deep=deep;}
};Record* getRecord(Node *cur, map<Node *,Record *>&mp)
{if(mp.count(cur)) return mp[cur];int follow=0;for(auto next: cur->neighbors){follow = max(follow, getRecord(next, mp)->deep);}Record *p=new Record(cur,follow+1);mp[cur]=p;return p;
}bool comp(Record *a, Record*b)
{return (a->deep)>(b->deep);
}vector<Node*> topoSort(vector<Node*>graph)
{//获取所有节点的deep然后存到map中;map<Node*, Record*>mp;for(auto node: graph){getRecord(node, mp);}//将Record*们放到vec中准备排序vector<Record*>vec;for(auto pa: mp){vec.push_back(pa.second);}sort(vec.begin(),vec.end(),comp);//放到答案数组中vector<Node*>result;for(auto m: vec){result.push_back(m->node);}return result;
}
需要根据deep进行排序 ,然后又要能根据排序结果得到对应Node放到result答案数组中返回,所以封装了个Record。