?? tuopu.h
字號:
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -