2018年3月29日

计算几何大佬板子

摘要: struct P { double x,y; P() {} P(double x, double y) { this->x = x; this->y = y; } P operator + (const P &c) const { return P(x + c.x, y + c.y); } P... 阅读全文

posted @ 2018-03-29 17:26 chinacwj1 阅读(209) 评论(0) 推荐(0) 编辑

导航