node.h

来自「与C语言四书五经之《C和指针》的配套的书上源代码。」· 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 + -
显示快捷键?