摘要:
#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;typedef struct tree{ char data; int ltag; int rtag; tree *lchild; tree *rch... 阅读全文
摘要:
模拟电梯载人实验Elevator.hclass Elevator{public: Elevator(); ~Elevator(); void getNowNum(); void SetToNum(int); void UP(); void DOWN();private: int NowNum; i... 阅读全文