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

📄 main.c

📁 Entropy-based CLIQUE算法改进
💻 C
字号:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "Param.h"
#include "IntList.h"
#include "NPoint.h"
#include "NArray.h"
#include "HashTree.h"
#include "DensityMap.h"
#include "HashForest.h"
using namespace std;

// Main program
int main(int argc, char** argv)
{
  EntStat es;
  
  if (argc!=5) {
    printf("Usage: main param_file t1 t2 t3\n");
    exit(3);
  }
  
  es.entropy = atof(argv[2]);
  es.interest = atof(argv[3]);
  es.interest_gain = atof(argv[4]);

  HashForest hf(argv[1],es);
  hf.mine();

  return 0;
}

⌨️ 快捷键说明

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