typedef struct Edge{ //边集数组
int u, v; //弧尾和弧头
int next; //指向同一个弧尾的下一条边
//EdgeType weight; //权值,对于非网图可以不需要
} EdgeLib;
int book[MAXM] = {0}; //标记某字母是否出现
int IsTopoSeq(char *data, char *topo);//根据关系列表data,判断topo字符串是否为拓扑序列
int CreateGraph(char *data, VertexNode *GL);//创建一个图
void PrintGraph(VertexNode *GL);//输出图
int TopoLogicalSort_DFS(char *topo, VertexNode *GL, int n);//拓扑排序,获取拓扑序列,若存在环则返回假
int TopoLogicalSort_BFS(char *topo, VertexNode *GL, int n);//拓扑排序,获取拓扑序列,若存在环则返回假
int CreateGraph_2(char *data, int In[], int first[], EdgeLib edge[]);//创建一个图
void PrintGraph_2(int first[], EdgeLib edge[]);//输出图
int TopoLogicalSort(char *topo, EdgeLib edge[], int In[], int first[], int n);//拓扑排序,获取拓扑序列,若存在环则返回假,使用队列存储拓扑序列
int main()
{
int i, n;
VertexNode GL[MAXM];
char topo[MAXM+1];
char data[MAXN+MAXN+1];
int In[MAXM], first[MAXM]; //存储顶点信息
EdgeLib edge[MAXN]; //存储边信息
gets(data);
n = CreateGraph_2(data, In, first, edge);//创建一个图
PrintGraph_2(first, edge);//输出图
if (TopoLogicalSort(topo, edge, In, first, n))//采用拓扑排序构造拓扑序列
puts(topo);
else
puts("不存在满足条件的序列");
if (IsTopoSeq(data, topo))//根据关系列表data,判断topo字符串是否为拓扑序列
puts(topo);
else
puts("不存在满足条件的序列");
gets(data);
n = CreateGraph(data, GL);//创建一个图
PrintGraph(GL);//输出图
if (IsTopoSeq(data, topo))//根据关系列表data,判断topo字符串是否为拓扑序列
puts(topo);
else
puts("不存在满足条件的序列");
if (TopoLogicalSort_BFS(topo, GL, n))//采用拓扑排序构造拓扑序列
puts(topo);
else
puts("不存在满足条件的序列");
gets(data);
n = CreateGraph(data, GL);//创建一个图
PrintGraph(GL);//输出图
if (TopoLogicalSort_DFS(topo, GL, n))//采用拓扑排序构造拓扑序列
puts(topo);
else
puts("不存在满足条件的序列");
if (IsTopoSeq(data, topo))//根据关系列表data,判断topo字符串是否为拓扑序列
puts(topo);
else
puts("不存在满足条件的序列");
return 0;
}
/*
函数名称:CreateGraph
函数功能:把顶点和边信息读入到表示图的邻接表中
输入变量:char *data:存储了N个关系式的字符串
VertexNode *GL : 顶点表数组
输出变量:表示图的顶点表数组
返回值:int :顶点数量
*/
int CreateGraph(char *data, VertexNode *GL)
{
int i, u, v;
int count = 0;//记录顶点数量
EdgeNode *e;
for (i=0; i<MAXM; i++)//初始化图
{
GL[i].data = i + ‘a‘;
GL[i].in = 0;
GL[i].firstEdge = NULL;
book[i] = 0;
}
for (i=0; data[i]!=‘\0‘; i+=2)//每次读取两个变量
{
u = data[i] - ‘a‘; //字母转换为数字,‘a‘对应0,‘b‘对应1,以此类推
v = data[i+1] - ‘a‘;
book[u] = book[v] = 1;
e = (EdgeNode*)malloc(sizeof(EdgeNode)); //采用头插法插入边表结点
if (!e)
{
puts("Error");
exit(1);
}
e->adjvex = v;
e->next = GL[u].firstEdge;
GL[u].firstEdge = e;
GL[v].in++;
}
for (i=0; i<MAXM; i++)//计算顶点数量
{
if (book[i] != 0)
count++;
}
return count;
}
void PrintGraph(VertexNode *GL)//输出图
{
int u, v;
EdgeNode *e;
for (u=0; u<MAXM; u++)
{
printf("G[%d] = %c: ", u, GL[u].data);
for (e=GL[u].firstEdge; e!=NULL; e=e->next)//将u的邻接点入度减1,并将入度为0的顶点入栈
{
v = e->adjvex;
printf("<%c, %c>, ", GL[u].data, GL[v].data);
}
printf("\n");
}
printf("\n");
}
/*
函数名称:TopoLogicalSort_DFS
函数功能:拓扑排序,采用深度优先搜索获取拓扑序列
输入变量:char *topo:用来存储拓扑序列的字符串
VertexNode *GL : 顶点表数组
int n:顶点个数
输出变量:用来存储拓扑序列的字符串
返回值:int :拓扑排序成功返回真,若存在环则返回假
*/
int TopoLogicalSort_DFS(char *topo, VertexNode *GL, int n)
{
int i, u, v, top;
int count = 0; //用于统计输出顶点的个数
EdgeNode *e;
int Stack[MAXM];
for (top=i=0; i<MAXM; i++)//将入度为0的顶点入栈
{
if (book[i] != 0 && GL[i].in == 0)
{
Stack[top++] = i;
}
}
while (top > 0)//采用深度优先搜索获取拓扑序列
{
u = Stack[--top];
topo[count++] = u + ‘a‘;
for (e=GL[u].firstEdge; e!=NULL; e=e->next)//将u的邻接点入度减1,并将入度为0的顶点入栈
{
v = e->adjvex;
if (--GL[v].in == 0)
Stack[top++] = v;
}
}
topo[count] = ‘\0‘;
return (count == n);//如果count小于顶点数,说明存在环
}
/*
函数名称:TopoLogicalSort_BFS
函数功能:拓扑排序,采用广度优先搜索获取拓扑序列
输入变量:char *topo:用来存储拓扑序列的字符串
VertexNode *GL : 顶点表数组
int n:顶点个数
输出变量:用来存储拓扑序列的字符串
返回值:int :拓扑排序成功返回真,若存在环则返回假
*/
int TopoLogicalSort_BFS(char *topo, VertexNode *GL, int n)
{
int i, u, v, front, rear;
EdgeNode *e;
front = rear = 0;
for (i=0; i<MAXM; i++)//将入度为0的顶点入栈
{
if (book[i] != 0 && GL[i].in == 0)
{
topo[rear++] = i + ‘a‘;
}
}
while (front < rear)//采用广度优先搜索获取拓扑序列
{
u = topo[front++] - ‘a‘;
for (e=GL[u].firstEdge; e!=NULL; e=e->next)//将u的邻接点入度减1,并将入度为0的顶点入栈
{
v = e->adjvex;
if (--GL[v].in == 0)
topo[rear++] = v + ‘a‘;
}
}
topo[rear] = ‘\0‘;
return (rear == n);//如果count小于顶点数,说明存在环
}
/*
函数名称:CreateGraph_2
函数功能:把顶点和边信息读入到表示图的边表集中
输入变量:char *data:存储了N个关系式的字符串
int In[]:存储了顶点的入度信息
int first[]:指向以该顶点为弧尾的第一条边
EdgeLib edge[]:存储了边信息的边表集
输出变量:表示图的边表集数组
返回值:int :顶点数量
*/
int CreateGraph_2(char *data, int In[], int first[], EdgeLib edge[])//创建一个图
{
int i, j;
int count = 0;//记录顶点数量