types_df.h
来自「最大流」· C头文件 代码 · 共 21 行
H
21 行
/* defs.h */
typedef /* arc */
struct arc_st
{
long r_cap; /* residual capasity */
struct node_st *head; /* head */
struct arc_st *sister; /* opposite arc */
struct arc_st *next; /* next arc with the same tail */
}
arc;
typedef /* node */
struct node_st
{
arc *first; /* first outgoing arc */
arc *current; /* current incident arc */
struct node_st *previous; /* previous node in the path to sink */
long rank; /* distance from the sink */
} node;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?