[计算机]水平序的Graham-Scan算法_第1页
[计算机]水平序的Graham-Scan算法_第2页
[计算机]水平序的Graham-Scan算法_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、.#include <iostream>#include <algorithm>#include <cmath>using namespace std;typedef double Type; / 注意下面的fabs()const int maxn = 1005;const double EPS = 1e-8;const double Pi = acos(-1.0);typedef struct Point Type x, y; Point () Point (Type & xx, Type & yy) : x(xx), y(yy) Poin

2、t;/ 判断正负.int dblcmp(Type d) if (fabs(d) < EPS) return 0; / 注意数据类型不同,abs()也不同. return d > 0 ? 1 : -1;/ 叉乘. cross product of (c->a) and (c->b).Type Cross(Point & c, Point a, Point b) return (a.x - c.x) * (b.y - c.y) - (b.x - c.x) * (a.y - c.y);Type Distance(Point & u, Point & v

3、) return sqrt( 0.0 + (u.x - v.x) * (u.x - v.x) + (u.y - v.y) * (u.y - v.y) );int n;Point pointmaxn;int Stackmaxn;int top;double ans;bool cmp(const Point & a, const Point & b) if (a.y = b.y) return a.x < b.x; return a.y < b.y;void graham_scan() int i; int temp_top; if (n <= 1) top =

4、0; return ; sort(point, point + n, cmp); / point0即为起点. / 做右链. top = -1; Stack+top = 0; Stack+top = 1; for (i = 2; i < n; i+) while (top >= 1 && dblcmp(Cross(pointStacktop - 1, pointi, pointStacktop) >= 0) top-; / 如果不能左转,则退栈. 如果只要求极点,则共线的点也是不要的(即要加等于). Stack+top = i; temp_top = top;

5、/ 此时的栈顶元素一定是第n个点. / 做左链. Stack+top = n - 2; for (i = n - 3; i >= 0; i-) while (top >= temp_top + 1 && dblcmp(Cross(pointStacktop - 1, pointi, pointStacktop) >= 0) top-; / 如果不能左转,则退栈. 如果只要求极点,则共线的点也是不要的(即要加等于). Stack+top = i; / 此时的栈顶元素是第1个点.(如果凸包是一条直线,则左右链倒置相同.) / 凸包的顶点为pointStack0 到

6、 pointStacktop - 1.int main(void) int i; scanf("%d", &n); for (i = 0; i < n; i+) scanf("%lf %lf", &pointi.x, &pointi.y); graham_scan(); ans = 0; for (i = 0; i < top; i+) printf("%lf %lfn", pointStacki.x, pointStacki.y); ans += Distance(pointStacki, pointStacki + 1); / pointStacktop

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论