btadt.h
来自「经典c++程序的实现」· C头文件 代码 · 共 9 行
H
9 行
class BinNode { // Binary tree node class
public:
BinNode* leftchild() const; // Return pointer to left child
BinNode* rightchild() const; // Return pointer to right child
BELEM value() const; // Return value
void setValue(BELEM val); // Set value
bool isLeaf() const; // Return TRUE if is a leaf
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?