• 大小: 9KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Java
  • 标签: 层次聚类  java  

资源简介

用于JAVA编程实现层次聚类算法的学习。

资源截图

代码片段和文件信息

package cluster;

public class Cell {

//private int x;
//private int y;
private int numberPoints;//点的数目
private int qualified;//密度是否达到阈值,01
private int checked;//是否检查过 01 
private int clusterNo;//所属类别0表示离散点

/* public void setX(int i) {
x = i;
}

public void setY(int j) {
y = j;
}*/
public Cell(){
numberPoints = 0;
qualified = 0;
checked = 0;
clusterNo = 0;
}

public void setNumberPoints(int i) {
numberPoints = i;
}
public void setQualified(int i){
qualified = i;
}
public void setChecked(int i){
checked = i;
}
public void setClusterNo(int i){
clusterNo = i;
}

/* public int getX(){
return x;
}
public int getY(){
return y;
}*/
public int getNumberPoints(){
return numberPoints;
}
public in

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        233  2010-03-15 22:56  TestK\.classpath

     文件        517  2010-03-15 22:56  TestK\.project

     文件       1194  2010-03-15 22:57  TestK\bin\cluster\Cell.class

     文件       1047  2010-03-15 22:57  TestK\bin\cluster\Cluster.class

     文件        907  2010-03-15 23:00  TestK\bin\cluster\ClusterConfig.class

     文件       6613  2010-03-15 22:57  TestK\bin\cluster\MyClusterByClique.class

     文件       1050  2010-03-15 22:57  TestK\code\cluster\Cell.java

     文件        755  2010-03-15 22:57  TestK\code\cluster\Cluster.java

     文件        737  2010-03-15 23:00  TestK\code\cluster\ClusterConfig.java

     文件       6831  2010-03-15 22:57  TestK\code\cluster\MyClusterByClique.java

     目录          0  2010-03-17 12:13  TestK\bin\cluster

     目录          0  2010-03-17 12:13  TestK\code\cluster

     目录          0  2010-03-17 12:13  TestK\bin

     目录          0  2010-03-17 12:13  TestK\code

     目录          0  2010-03-17 12:13  TestK

----------- ---------  ---------- -----  ----

                19884                    15


评论

共有 条评论