⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.h

📁 c和指针 学习c语言必须阅读的书籍之一 提高对C语言的掌握理解能力
💻 H
字号:
/*
** 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -