📄 hed.h
字号:
typedef int InfoType;
#define MAXV 100
typedef struct
{ int no;
InfoType info;
} VertexType;
typedef struct
{ int edges[MAXV][MAXV];
int vexnum,arcnum;
VertexType vexs[MAXV];
} MGraph;
typedef struct ANode
{ int adjvex;
struct ANode*nextarc;
} ArcNode;
typedef int Vertex;
typedef struct Vnode
{ Vertex data;
ArcNode*firstarc;
} Vnode;
typedef Vnode Adjlist[MAXV];
typedef struct
{ Adjlist adjlist;
int n,e;
} ALGraph;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -