上传者: 42148053
|
上传时间: 2022-03-21 09:37:17
|
文件大小: 8KB
|
文件类型: -
层次聚类Impl。 在Java上
这是分层聚类的非常简单的实现,您可能在数据挖掘算法类中听说过。 如果您不熟悉它,请访问了解更多详情。 :)
执行
数据点存储在mPoints ,我们的目标是从中计算mClusters 。 为此,我们为所有成对的数据点保留距离矩阵mMatirx ,并为每个点mMinIndex最小距离点的索引mMinIndex 。
// mN: number of points, mD: dimension of points.
private static int mN = 0 ;
private static int mD = 0 ;
// mPoints: raw data resides in here. Constant after it's been initialized.
private static ArrayList mPoints