php 凸包排序,如何理解xyz的判断点在凸包内模板

本篇文章给大家带来的内容是关于如何理解xyz的判断点在凸包内模板,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。int n,m,tot;

struct point

{

double x,y;

}p[100000],a[100000],ss;

bool cmp(point A,point B)

{

if(A.x!=B.x)

return A.x

return A.y

}

point operator -(point A,point B)

{

point c;

c.x=A.x-B.x;

c.y=A.y-B.y;

return c;

}

double cross(point A,point B)

{

return A.x*B.y-B.x*A.y;

}

void dopack()

{

tot=0;

for(int i=1;i<=n;i++)

{

while(tot>1&&cross(p[tot-1]-p[tot-2],a[i]-p[tot-2])<=0)tot--;

p[tot++]=a[i];

}

int k=tot;

for(int i=n-1;i>0;i--)

{

while(tot>k&&cross(p[tot-1]-p[tot-2],a[i]-p[tot-2])<=0)tot--;

p[tot++]=a[i];

}

if(n>1)tot--;

}

bool check(point A)

{

int l=1,r=tot-2,mid;

while(l<=r)

{

mid=(l+r)>>1;

double a1=cross(p[mid]-p[0],A-p[0]);

double a2=cross(p[mid+1]-p[0],A-p[0]);

if(a1>=0&&a2<=0)

{

if(cross(p[mid+1]-p[mid],A-p[mid])>=0)return true;

return false;

}

else if(a1<0)

{

r=mid-1;

}

else

{

l=mid+1;

}

}

return false;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值