摘要: # -*- coding: utf-8 -*- from matplotlib.pyplot import * from collections import defaultdict import random import json """ 计算两点欧式距离的函数 """ def dist(p1,p2): return ((p1[0] - p2[0]) ** 2 + (p1... 阅读全文
posted @ 2016-07-28 11:20 GDUT_xiang 阅读(604) 评论(0) 推荐(0) 编辑