node.h

来自「大方科技莱卡的减肥了但十分大方的发生地方」· C头文件 代码 · 共 13 行

H
13
字号
/*
** Sample declaration for a linked list node.  Change this declaration
** as appropriate for your list values and recompile the linked list
** search function with it.  Note that the value can be anything you
** want -- not just a built-in type -- because your comparison function
** does the work of comparing it to the desired value.
*/

typedef struct NODE {
	struct	NODE	*link;
	int	value;
} Node;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?