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

📄 tstree.h

📁 多重搜索树算法
💻 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 + -