tuopu.h

来自「有关拓扑排序的问题」· C头文件 代码 · 共 25 行

H
25
字号
#define degree 90

typedef enum{unvisited,visit}VisitIf;

typedef struct EBox 
{
	VisitIf    mark;
	int    ivex,jvex;
	struct EBox   *ilink,*jlink;
	InfoType   *info;
}EBox;

typedef struct VexBox
{
	VertexType  data;
	EBox   *firstedge;
}VexBox;

typedef  struct 
{
	VexBox  adjmulist[degree];
	int   vexnum,edgenum;
}

void Toposort(adjlist GL,int n);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?