shareclass.h

来自「某个实验事编写粗糙集智能信息处理的程序」· C头文件 代码 · 共 26 行

H
26
字号
 
#if!defined(SHARECLASS_H_)
#define SHARECLASS_H_


//the struct of cut dot
struct WCutRecord
{
	int iColumn;   //the number of column where tha cute takes place
	int iCuts;     //the number of the cuts
	char** cpCut;  //content 
	WCutRecord* next; //the next cutsets
};

//the class of the Positive of X to D
class PosD
{
public:
	int PosNum;			       //the attribute number
	int* PosSet;			       //the attribute sets
public:
	PosD(int i);
	void DeletePos();
	bool compare(PosD* right);
};
#endif

⌨️ 快捷键说明

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