[LintCode] 拓扑排序

BFS:

 1 /**
 2  * Definition for Directed graph.
 3  * struct DirectedGraphNode {
 4  *     int label;
 5  *     vector<DirectedGraphNode *> neighbors;
 6  *     DirectedGraphNode(int x) : label(x) {};
 7  * };
 8  */
 9 class Solution {
10 public:
11     /**
12      * @param graph: A list of Directed graph node
13      * @return: Any topological order for the given graph.
14      */
15     vector<DirectedGraphNode*> topSort(vector<DirectedGraphNode*> graph) {
16         // write your code here
17         vector<DirectedGraphNode*> topo;
18         unordered_map<DirectedGraphNode*, int> degrees = compute_indegree(graph);
19         queue<DirectedGraphNode*> zeros;
20         for (auto itr = degrees.begin(); itr != degrees.end(); itr++)
21             if ((*itr).second == 0)
22                 zeros.push((*itr).first);
23         while (!zeros.empty()) {
24             DirectedGraphNode* zero = zeros.front();
25             zeros.pop();
26             topo.push_back(zero);
27             for (DirectedGraphNode* neigh : zero -> neighbors)
28                 if (--degrees[neigh] == 0)
29                     zeros.push(neigh);
30         }
31         return topo;
32     }
33 private:
34     unordered_map<DirectedGraphNode*, int> compute_indegree(vector<DirectedGraphNode*>& graph) {
35         unordered_map<DirectedGraphNode*, int> degrees;
36         for (DirectedGraphNode* node : graph) {
37             if (degrees.find(node) == degrees.end())
38                 degrees[node] = 0;
39             for (DirectedGraphNode* neigh : node -> neighbors)
40                 degrees[neigh]++;
41         }
42         return degrees;
43     }
44 };

DFS:

 1 /**
 2  * Definition for Directed graph.
 3  * struct DirectedGraphNode {
 4  *     int label;
 5  *     vector<DirectedGraphNode *> neighbors;
 6  *     DirectedGraphNode(int x) : label(x) {};
 7  * };
 8  */
 9 class Solution {
10 public:
11     /**
12      * @param graph: A list of Directed graph node
13      * @return: Any topological order for the given graph.
14      */
15     vector<DirectedGraphNode*> topSort(vector<DirectedGraphNode*> graph) {
16         // write your code here
17         vector<DirectedGraphNode*> topo;
18         unordered_set<DirectedGraphNode*> visited;
19         for (DirectedGraphNode* node : graph)
20             if (visited.find(node) == visited.end())
21                 dfs(graph, node, visited, topo);
22         reverse(topo.begin(), topo.end());
23         return topo;
24     }
25 private:
26     void dfs(vector<DirectedGraphNode*>& graph, DirectedGraphNode* node,
27              unordered_set<DirectedGraphNode*>& visited,
28              vector<DirectedGraphNode*>& topo) {
29         visited.insert(node);
30         for (DirectedGraphNode* neigh : node -> neighbors)
31             if (visited.find(neigh) == visited.end())
32                 dfs(graph, neigh, visited, topo);
33         topo.push_back(node);
34     }
35 };
时间: 2024-10-26 04:10:14

[LintCode] 拓扑排序的相关文章

九章算法面试题65 拓扑排序

九章算法官网-原文网址 http://www.jiuzhang.com/problem/66/ 题目 给一个有向无环图,求出这个有向无环图的拓扑排序结果. 在线测试本题 http://www.lintcode.com/en/problem/topological-sorting/ 解答 [背景知识] 拓扑排序问题在我们生产工序或者是建立依赖关系当中有重要的运用. 通常我们所说的拓扑排序是对一个有向无环图的. 所以把一个有向无环图的顶点组成的序列,每个点只出现一次,并且A在序列中排在B的前面图中不

拓扑排序讲解

在这里我们要说的拓扑排序是有前提的 我们在这里说的拓扑排序是基于有向无环图的!!!. (⊙o⊙)…我所说的有向无环图都知道是什么东西吧.. 如果不知道,我们下面先来来说说什么是有向无环图. 所谓有向无环图,顾名思义是不存在环的有向图(至于有向图是什么不知道的在前面我们有一个图论讲解上都有). 点的入度:以这个点为结束点的边数. 点的出度:以这个点为出发点的边的条数. 拓扑序就是对于一个节点的一个排列,使得(u,v)属于E,那么u一定出现在v的前面.然而拓扑排序就是一个用来求拓扑序的东西. 对于左

CSU 1804: 有向无环图(拓扑排序)

http://acm.csu.edu.cn/csuoj/problemset/problem?pid=1804 题意:…… 思路:对于某条路径,在遍历到某个点的时候,之前遍历过的点都可以到达它,因此在这个时候对答案的贡献就是∑(a1 + a2 + a3 + ... + ai) * bv,其中a是之前遍历到的点,v是当前遍历的点. 这样想之后就很简单了.类似于前缀和,每次遍历到一个v点,就把a[u]加给a[v],然后像平时的拓扑排序做就行了. 1 #include <bits/stdc++.h>

7-9-有向图无环拓扑排序-图-第7章-《数据结构》课本源码-严蔚敏吴伟民版

课本源码部分 第7章  图 - 有向无环图拓扑排序 ——<数据结构>-严蔚敏.吴伟民版        源码使用说明  链接??? <数据结构-C语言版>(严蔚敏,吴伟民版)课本源码+习题集解析使用说明        课本源码合辑  链接??? <数据结构>课本源码合辑        习题集全解析  链接??? <数据结构题集>习题解析合辑        本源码引入的文件  链接? Status.h.SequenceStack.c.ALGraph.c    

hihoCoder 1175:拓扑排序二

题目链接: http://hihocoder.com/problemset/problem/1175 题目难度:一星级(简单题) 今天闲来无事,决定刷一道水题.结果发现这道水题居然把我卡了将近一个钟头. 最后终于调通了.总结起来,原因只有一个:不够仔细. 思路不用细说了,就是拓扑排序的简单应用.然而,一些不起眼的细节才是让你掉坑里的真正原因. 猜猜哪儿可能出bug? // A simple problem, but you can't be too careful with it. #inclu

hdu1285(拓扑排序)

这道题要求没有输赢关系的两个元素必须按照升序输出,有输赢关系的,赢得在输的前面,所以用队列或者栈来降低时间复杂度的优化过的拓扑排序会出错. 比如这组输入 5 3 1 2 2 3 4 5 至少我写的两种拓扑排序都wa了.但是不用队列或者栈来优化的话, 1.每次都从头至尾扫描一遍,找到一个没标记过的节点, 2.将它标记 3.然后删除从它出来的每条边. 重复这三个操作,加标记的次序,就是题目要的答案. 下面的代码中用到了队列,但只是用来保存答案而已.并没有用它优化的意思. #include <iost

uva 10305 Ordering Tasks(拓扑排序)

拓扑排序,不用判断是否有环,dfs挺简单的 代码: #include<stdio.h> #include<string.h> #include<stdlib.h> int map[105][105]; int visit[105]; int c[105]; int n,m,t; void dfs(int x) { visit[x] = 1; for(int i=1; i<=n; i++) { if(!visit[i]&&map[i][x]==1)

NOJ 2015年陕西省程序设计竞赛网络预赛(正式赛)(忙碌的选课系统-拓扑排序注意重边)

D - 忙碌的选课系统 Time Limit: 10000 ms        Memory Limit: 65536 KB Submit Description 每学期末,都是万众瞩目的选课时间,由于人数过多,某学校的服务器常常被无数的学生挤的爆掉,这是,教务系统大人说,你们选个课都这么慢,居然还怪我们.于是,每次教务系统都会在服务器快要瘫痪前关闭它.在无数学生的强烈抗议下,教务系统妥协了,再给每个人一次机会,但他让我们用最快的方式决定该选的课程,选上后就退出. 这让大一学渣狗犯了难,在新的选

POJ1420 Spreadsheet(拓扑排序)注意的是超内存

Spreadsheet Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 617   Accepted: 290 Description In 1979, Dan Bricklin and Bob Frankston wrote VisiCalc, the first spreadsheet application. It became a huge success and, at that time, was the ki