fpgrowth.h
来自「基于模式增长的关联规则数据挖掘算法」· C头文件 代码 · 共 28 行
H
28 行
/*---------------------------------------------------------------------- File : fpgrowth.h Contents: fpgrowth algorithm for finding frequent sets Author : Bart Goethals Update : 4/4/2003 ----------------------------------------------------------------------*/class FPgrowth{ public: FPgrowth(); ~FPgrowth(); void setData(char *file, int type){data = new Data(file,type);} void setMinsup(unsigned ms){minsup = ms;} void setOutput(char *of); int mine(); private: unsigned minsup; Data *data; FPtree *fpt; FILE *out;};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?