模板
alpc_paul
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
读写外挂
非常实用 void read(int &a) { int t; while (t = getchar(), isspace(t)); a = t - '0'; while (t = getchar(), !isspace(t)) a = a * 10 + t - '0'; }原创 2014-08-15 08:39:18 · 839 阅读 · 0 评论 -
凸包模板(注意去重)
#include #include #include #include #define INF 1000000 #define N 1000 #define EPS 1e-6 using namespace std; struct point { int x,y; //横纵坐标 : x,y double len,theta; //与参考点的距离 len 与参考点构成的向量与 (原创 2014-08-14 17:26:12 · 724 阅读 · 2 评论
分享