📄 chbrotre.h
字号:
/*树的孩子兄弟表示法的头文件*/
typedef char datatype; /* 树中结点值的类型 */
typedef struct node { /*树中每个结点的类型*/
datatype data;
struct node * firstchild, *rightsibling;
} node, * pnode;
pnode root; /*指向树根结点的指针*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -