
图
生如_夏花
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
图的遍历
#include #include #include #include using namespace std;int visted[100];class Graph{public:char vertexs[100];char Edges[100][100];int vexnum, arcnum;Graph() {}Graph CreateGraph();int LocateIn(Graph gr原创 2015-12-17 12:23:59 · 235 阅读 · 0 评论 -
poj-1094 Sorting It All Out
题意:给定一组大小关系,判断是否能够确定有唯一的拓扑序列。 输出格式有三种:1. 有唯一的拓扑序列,依次输出。 2. 该序列不能判断是否有序。 3. 出现矛盾,即出现环。 输出格原创 2016-01-26 19:19:59 · 250 阅读 · 0 评论