📄 types_simp.h
字号:
/* defs.h */
typedef /* arc */
struct arc_st
{
long len; /* length of the arc */
struct node_st *head; /* head node */
}
arc;
typedef /* node */
struct node_st
{
arc *first; /* first outgoing arc */
long dist; /* tentative shortest path length */
struct node_st *parent; /* parent pointer */
struct node_st *next; /* next node in queue */
struct node_st *t_next; /* previous node in tree */
struct node_st *t_prev; /* previous node in tree */
long t_size; /* subtree size */
int status; /* status of node */
long t_stamp;
} node;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -