资源简介
C++ 二叉树 动物 猜想 游戏
代码片段和文件信息
#include
#include
using namespace std;
class State;
class Node {
public:
Node(State *s) : state(s) {}
void process();
State *state;
};
class State {
public:
virtual void process(Node *node) = 0;
virtual ~State() {} // Designed for inheritance
};
class QuestionState : public State {
public:
QuestionState(string ques Node *yes Node *no);
virtual void process(Node *node);
protected:
string question;
Node *yesNode; // No need for smart ptrs here
Node *noNode; // But only in this particular case
};
class AnswerState : public State {
public:
AnswerState(string a) : animal(a) {}
virtual void process(Node *node);
protected:
string animal;
};
void
Node::process()
{
state->process(this);
}
QuestionState::QuestionState(string q Node *y Node *n)
: question(q) yesNode(y) noNode(n) {}
void
QuestionState::process(Node *node)
{
string answer;
cout << question << “ “;
getline(cin answer);
if(answer == “yes“) {
yesNode->process();
} else {
noNode->process()
相关资源
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
- FTP客户端源码(c++)
- c++ 画图(14Qt-XPS)
- c++多边形交并差运算
- VC++基于OpenGL模拟的一个3维空间模型
- c++ 虚拟摄像头
- hook,捕获所有案件,查找所有窗口,
- C语言课设计算器
- c++ 简易贪吃蛇源码
- 高精度加法(c++代码)
- C++调用百度地图案例
- 北京化工大学计算方法(C/C++)讲义
- 基于VC++的SolidWorks二次开发SolidWorks
- c++ 模拟鼠标按键
- OFD编辑器
- Beginning C++17 From Novice to Professional
- C++ STL实现
- opencv手部轮廓识别以及轨迹识别
- 百度C++编码规范
- C++ sql2008 WebServer通讯.docx
- c++ 定时关机程序源码
- 基于VSCode和CMake实现C++开发
- c++语法查询工具
- c++ 账务系统源码
- GBT 28169-2011 嵌入式软件 C语言编码规范
- c++ 猜拳小游戏
- XUnZip Zip解压缩.rar
评论
共有 条评论