资料
http://hivemined.ir/wp-content/uploads/2012/04/convexHull.pdf
http://en.literateprograms.org/Quickhull_%28Python%2C_arrays%29

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <map>
#include <ctime>
using namespace std;
#define MIN(a, b) ((a) < (b) ? (a) : (b))

本文介绍了QuickHull算法,这是一种用于计算二维空间中点集的凸包的高效算法。通过链接提供的资料,读者可以深入理解算法的实现原理和步骤。

被折叠的 条评论
为什么被折叠?



