📄 node.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 + -