hashforest.h

来自「聚类算法Enclus的源程序」· C头文件 代码 · 共 25 行

H
25
字号
// A number of hash trees, one for each pass
class HashForest {
public:
  HashForest(char* p, EntStat es);
  ~HashForest();
  void mine();  
  float entropy_dim(int d);
  EntStat findStat(const IntList& ss);
  void readfile();
  
  float** get_dataset() { return dataset; }
  int get_data_row() { return data_row; }
  
private:
  HashTree** nonsig;  // Non significant subspaces
  HashTree** sig;     // Significant subspaces
  int brFactor;       // Branching factor of hash trees
  EntStat sta;        // Thresholds

  Param prm;          // Store the parameters
  float** dataset;    // Store the dataset
  int data_row;       // No of data rows in the dataset
  char cluster_file[256];  // Name of the cluster file
};

⌨️ 快捷键说明

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