K-means algorithm variation with equal cluster size

前端 未结 16 971
挽巷
挽巷 2020-11-27 14:26

I\'m looking for the fastest algorithm for grouping points on a map into equally sized groups, by distance. The k-means clustering algorithm looks straightforward and promis

16条回答
  •  不知归路
    2020-11-27 15:19

    Also look at K-d tree which partitions the data until each partitions' members are less than a BUCKET_SIZE which is an input to the algorithm.

    This doesn't force the buckets/partitions to be exactly the same size but they'll be all less than the BUCKET_SIZE.

提交回复
热议问题