⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assoc.h,v

📁 charm是基于垂直数据集挖掘关联规则的一个著名算法
💻 H,V
字号:
head	1.2;access;symbols;locks	zaki:1.2; strict;comment	@ * @;1.2date	2001.06.24.21.17.20;	author zaki;	state Exp;branches;next	1.1;1.1date	2001.06.12.16.41.58;	author zaki;	state Exp;branches;next	;desc@Charm with Hashing.@1.2log@added use_hash_map@text@#ifndef _ASSOC_H#define _ASSOC_H#include <sys/time.h>#include <iostream.h>#include <fstream.h>#define boolean char#define FALSE 0#define TRUE 1#define DONTCARE 2//for returning subset info while intersecting#define AeqB 0#define AsubB 1#define BsubA 2#define AneqB 3#define MBYTE (1024*1024)#define ITSZ sizeof(int)#define getsec(tv) tv.tv_sec+tv.tv_usec/1000000.0extern struct timeval tp;#define seconds(tm) gettimeofday(&tp,(struct timezone *)0);\tm=getsec(tp);typedef int (*CMPFUNC) (const void * a, const void * b);typedef void (*CLIQFUNC) (int *cliq, int cliqsz);extern int DBASE_NUM_TRANS;extern int DBASE_MAXITEM;extern float DBASE_AVG_TRANS_SZ;extern int DBASE_MINTRANS;extern int DBASE_MAXTRANS;extern int MINSUPPORT;extern long AVAILMEM;extern int num_partitions;//extern int GBK_threshold;extern boolean sort_ascend;extern boolean use_char_extl2;extern int maxtidlistsz;extern ofstream FOUT;extern boolean use_diff;extern boolean use_diff_f2;extern boolean diff_input;extern boolean use_output;extern boolean use_horizontal;extern boolean use_hash;extern boolean use_hash_map;extern int process_order;class Graph;extern Graph *F2Graph;class Dbase_Ctrl_Blk;extern Dbase_Ctrl_Blk *DCB;extern void ECLAT_Find_Freq();extern int cmpint (const void *, const void *);#endif //_ASSOC_H@1.1log@Initial revision@text@d48 1@

⌨️ 快捷键说明

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