凸包问题—Graham扫描法

#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;

struct point
{
    long long x;
    long long y;
} P[50005], S[50005];  //P中存点,S模拟栈存凸包的点;

long long xx;
long long yy;

// 计算各个点相对于P0的幅角α,按从小到大的顺序对各个点排序
bool cmp(struct point a, struct point b)
{
    if(atan2(a.y-yy,a.x-xx) != atan2(b.y-yy,b.x-xx)) //atan2函数求幅角
        return (atan2(a.y-yy,a.x-xx)) < (atan2(b.y-yy,b.x-xx));

    // 当α相同时(在同一条直线上),距离P0比较近的排在前面
    if (a.x != b.x)
        return abs(a.x) < abs(b.x);
    return abs(a.y) < abs (b.y);
}

//叉积判断c在直线ab的位置
long long Compare(struct point a, struct point b, struct point c)
{
    return ((a.x-c.x)*(b.y-c.y)-(b.x-c.x)*(a.y-c.y)); // (x1-x)*(y2-y)-(x2-x)*(y1-y)
}

int main()
{
    int n,i,j;
    while(cin>>n)
    {
        yy=1000005;
        for(i=0; i<n; i++)
        {
            cin>>P[i].x>>P[i].y;

            if(P[i].y < yy)
            {
                yy=P[i].y; // 记录纵坐标最小的点(xx,yy) 及位置 i
                xx=P[i].x;
                j=i;
            }
        }

        P[j]=P[0]; // P[j]是凸包上的点,删去后按照幅角排序
        sort(P+1, P+n, cmp);

        S[0].x=xx;
        S[0].y=yy;
        S[1]=P[1]; //P[1]也是凸包上的点,入栈

        int top=1;
        for(i=2; i<n;)
        {
            if(top && (Compare(S[top-1], S[top], P[i]) < 0)) //表示栈顶元素不为凸包上的点,栈顶元素出栈,继续判断当前点
                top--;
            else //表示当前点为凸包上的点,入栈
                S[++top]=P[i++];
        }

        if (P[n-1].x==xx) //排除一种情况
        {
            top--;
            for (i=n-1; i>=2; i--)
                if (P[i].x==xx)
                    S[++top]=P[i];
        }

        for(i=0; i<=top; i++)
            cout<<"("<<S[i].x<<","<<S[i].y<<")"<<endl;
    }
    return 0;
}

/*
测试数据

9
0 0
2 3
4 1
1 2
3 3
3 6
4 4
-1 4
-2 3

(0,0)
(4,1)
(4,4)
(3,6)
(-1,4)
(-2,3)

4
0 0
0 2
0 1
1 1

(0,0)
(1,1)
(0,2)
(0,1)

*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值