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

📄 cliques.h,v

📁 charm是基于垂直数据集挖掘关联规则的一个著名算法
💻 H,V
字号:
head	1.1;access;symbols;locks	zaki:1.1; strict;comment	@ * @;1.1date	2001.06.12.16.41.58;	author zaki;	state Exp;branches;next	;desc@Charm with Hashing.@1.1log@Initial revision@text@#ifndef _CLIQ_H#define _CLIQ_H#include "Array.h"class Cliques{private:   static Array<Array<Array<int> *> *> *theCliqs;public:   static Array<Array<Array<int> *> *> *cliqs(){ return theCliqs;}   static init_cliq(int sz=2){      theCliqs = new Array<Array<Array<int> *> *>(sz);      for (int i=0; i < sz; i++) theCliqs->optadd(NULL);   }   static void get_cliq(int *cliq, int cliqsz);   static void add_uniq(int it, Array<int> *cls);   static void collapse();   static void print();   static int cmpsize(const void *c1, const void *c2);};#endif@

⌨️ 快捷键说明

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