miss_value.h
来自「某个实验事编写粗糙集智能信息处理的程序」· C头文件 代码 · 共 37 行
H
37 行
// Miss_Value.h: interface for the Miss_Value class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MISS_VALUE_H__636EF1F7_6A79_11D5_A76F_0080C8E225C6__INCLUDED_)
#define AFX_MISS_VALUE_H__636EF1F7_6A79_11D5_A76F_0080C8E225C6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "fstream.h"
class Miss_Value
{
public:
Miss_Value();
virtual ~Miss_Value();
public:
bool InitIS(char* filename);
bool perform(char *,char*);
protected:
bool GetMissRate(float*);
private:
int **pIS;// information system
int *pDecis;// decision of information system
int Rec_Num;// the number of record
int ConAttrNum;//the number of conditon attribute
int* pNum;//=new int[2];
char **ConName; //Name of each Condition Attribute
char **ConType; //Condition Attributes type
int Stage; //the stage of the data
char Style[20]; //the style of the data
ifstream out;
};
#endif // !defined(AFX_MISS_VALUE_H__636EF1F7_6A79_11D5_A76F_0080C8E225C6__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?