我dist
在 R 中使用了这个函数,我想知道它的时间复杂度。
我知道层次聚类具有N^2*logN
时间复杂度。层次聚类由两部分组成,如下R中的代码。
> d <- dist(as.matrix(mtcars)) # find distance matrix
> hc <- hclust(d) # apply hirarchical clustering
> plot(hc) # plot the dendrogram
在应用层次聚类之前,需要计算距离矩阵。我认为这需要N^2
复杂性?