点集中最短点对的分治算法 时间:2015-08-08 04:58:36 【文件属性】: 文件名称:点集中最短点对的分治算法 文件大小:5KB 文件格式:CPP 更新时间:2015-08-08 04:58:36 点集 最短点对 分治算法 点集中最短点对的分治算法 #include #include #include using namespace std; typedef struct poin{ int x; int y; }point; typedef struct distanc{ point l; point r; double dis; }distan; 立即下载