📄 aitree.h
字号:
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class AiTree:public CObject
{
DECLARE_SERIAL(AiTree)
public:
AiTree();
~AiTree();
private:
int m_id;
AiTree* m_lch; //左兄
AiTree* m_rch; //右子
int m_sign;
CString m_mention;
public:
void SetId(int id);
void SetLch(AiTree* l);
void SetRch(AiTree* r);
void SetSign(int sign);
void SetMention(CString str);
int GetId();
AiTree* GetLch();
AiTree* GetRch();
int GetSign();
CString GetMention();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -