?? obstnode.h
字號(hào):
#if !defined _OBSTNODE_H_
#define _OBSTNODE_H_
#include "string"
using namespace std;
class OBSTNode
{
public:
void setpro(int i_total);
void setcontent(string pch_string);
void setvalue(int value);
int returnvalue();
float returnprobility();
string returncontent();
void setpro1(float i);
void sethight(int iheight);
int returnheight();
private:
int i_value;
float f_probility;
string pch_content;
int i_height;
};
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -