数据结构

位置:IT落伍者 >> 数据结构 >> 浏览文章

计算机应用专业数据结构上机考试辅导


发布日期:2023年05月19日
 
计算机应用专业数据结构上机考试辅导

编一C程序它能根据读入的数据构造有向图G并输出G的DFS遍历序列(从V开始)图的输入形式为n V Vi V Vi V Vi……Vi Vin (为输入结束标记其余的值都>=n>

(注程序的可执行文件名必须是 eexe)

#include

typedef enum {FalseTrue} Boolean;

int G[][];

int n;

void CreatG() /*建立图的邻接矩阵G[][]*/

{int ij;

printf(Input the number of the node:);

scanf(%d&n);

printf(\n);

for (i=;i

for (j=0;j

G[i][j]=0;

do

{ scanf("%d %d",&i,&j);

G[i][j]=1;

}while ((i!=-1)&&(j!=-1));

}

void TopSort() /*拓扑排序,输出拓扑序列*/

{ int i,j;

int degree[100]; /*按照无前驱顶点优先思想,degree[]存放个节点的入度.*/

Boolean visited[100],flag=True;

printf("The Topolgical Order as follow:");

for (i=0;i

{ degree[i]=0;

visited[i]=False;

}

printf("\n");

while(flag==True)

{

for (i=0;i

for (j=0;j

degree[i]=G[j][i]+degree[i];

i=0;

while ((i

if (i

{printf(" %d",i);

visited[i]=True;

for(j=0;j

{G[i][j]=0; degree[j]=0;}

}

else flag=False;

}

}

main()

{ CreatG();

TopSort();

}

               

上一篇:数据结构 4.5 表达式求值中后缀式的运算

下一篇:数据结构 4.6 从原表达式求后缀式的规则