📄 types_fpr.h
字号:
/* 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 */
long excess; /* excess of the node */
long rank; /* distance from the sink */
struct node_st *q_next; /* next node in queue */
struct node_st *nl_prev; /* used by prefl_to_flow */
} node;
typedef /* layer */
struct layer_st
{
node *push_first; /* 1st node with pisitive excess */
node *trans_first; /* 1st node with zero excess */
} layer;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -