?? fpgrowth.h
字號:
/*---------------------------------------------------------------------- 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -