cproc.h

来自「该文件利用算法模拟人工猜数字的过程」· C头文件 代码 · 共 28 行

H
28
字号
#pragma once
#include <vector>
#include <list>

using namespace std;

typedef struct res
{
	char di[4];
	int cl[3];
}*pres;

class Cproc
{
public:
	Cproc(void);
	char* select(void);
	void get(int[]);
	~Cproc(void);
private:
	list<res> _l;
	short _step;
	struct res _temp;
	vector<char> _yu;
	void _swap(vector<char>::iterator,vector<char>::iterator);
	bool x90;
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?