uva10256如何判断俩个凸包是否相交

本题并没有多大的难度,就是点集分割,然后求凸包,判断俩个凸包是否相交,

重点在于如何判断来个凸包是否相交,

分俩步进行,

1.判断俩个凸包上的任意线段是否规范相交

2.判断各自凸包上的点是否在另一个凸包内部以及边界上

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
const double eps=1e-10;
const int N=1e5;
int dcmp(double x)
{
    if(fabs(x)0?1:-1;
}
struct point
{
    double x,y;
    point() {}
    point(double x,double y):x(x),y(y){}
    point operator + (const point &a) const
    {
        return point(x+a.x,y+a.y);
    }
    point operator - (const point &a) const
    {
        return point(x-a.x,y-a.y);
    }
    void in()
    {
         cin>>x>>y;
    }
    bool operator < (const point &a) const
    {
        return x+eps0&&d1<=0&&d2>0) wn++;
        if(k<0&&d2<=0&&d1>0) wn--;
    }
    if(wn!=0) return 1;
    return 0;
}
int ConvexHull(point *p,int n,point *ch)
{
    sort(p,p+n);
    int m=0;
    for(int i=0;i1&&cross(ch[m-1]-ch[m-2],p[i]-ch[m-2])<=0) m--;
        ch[m++]=p[i];
    }
    int k=m;
    for(int i=n-2;i>=0;i--)
    {
        while(m>k&&cross(ch[m-1]-ch[m-2],p[i]-ch[m-2])<=0) m--;
        ch[m++]=p[i];
    }
    if(n>1) m--;
    return m;
}
int main()
{
    int m,c;
    while(cin>>m>>c)
    {
        if(m==0&&c==0) break;
        point p1[510],p2[510],ch1[510],ch2[510];
        for(int i=0;i


你可能感兴趣的:(计算几何)