I've to implement the DBSCAN algorithm. Assuming to start from this pseudocode
DBSCAN(D, eps, MinPts)
C = 0
for each unvisited point P in dataset D
mark P as visited
NeighborPts = regionQuery(P, eps)
if sizeof(NeighborPts) < MinPts
mark P as NOISE
else
C = next cluster
expandCluster(P, NeighborPts, C, eps, MinPts)
expandCluster(P, NeighborPts, C, eps, MinPts)
add P to cluster C
for each point P' in NeighborPts
if P' is not visited
mark P' as visited
NeighborPts' = regionQuery(P', eps)
if sizeof(NeighborPts') >= MinPts
NeighborPts = NeighborPts joined with NeighborPts'
if P' is not yet member of any cluster
add P' to cluster C
regionQuery(P, eps)
return all points within P's eps-neighborhood
My code has to run on an Amazon EC2 Instance with Ubuntu Linux 64 bit.
The function regionQuery queries a MongoDB database to obtain all points within P's eps-neighborhood.
So, according to you, what is the best programming language to implement it to improve performances? C, PHP, Java (I don't think)?
C = next clusterimplemented? is there a unmentioned cluster list somewhere? – lurscher May 27 '12 at 15:35