📄 ctree.h
字号:
#if !defined (CTREE_H)
#define CTREE_H
/* (c) Bartosz Milewski 2000 */
#define NUM_NODE 1
#define ADD_NODE 2
#define MULT_NODE 3
struct Node
{
int type;
};
struct NumNode
{
int type;
double val;
};
struct BinNode
{
int type;
struct Node * pLeft;
struct Node * pRight;
};
double Calc (struct Node * pNode);
struct Node * CreateNumNode (double value);
struct Node * CreateBinNode (int type, struct Node * pLeft, struct Node * pRight);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -