?? unittree.h
字號:
#include "string.h"
#include "iostream.h"
#define NULL 0
struct Node
{
char course[7];
Node *left;
Node *right;
};
class unitTree
{
public:
void add(char course[7]);
void display();
unitTree(){root=NULL;}
~unitTree();
private:
void show(Node* tmp);
void destroy(Node *);
Node *root;
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -