📄 tstree.h
字号:
#ifndef _TS_TREE_H_
#define _TS_TREE_H_
typedef struct tsTreeNode *TSTptr;
/*
* The value stored at the node is splitchar,
* and the three pointers represent the three children.
* The root of the tree is declared to be TSTptr root.
* We will represent every character in each string,
* including the null character that terminates it.
*/
typedef struct tsTreeNode {
char splitchar;
TSTptr lokid, eqkid, hikid;
} TSTnode;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -