凸包(Convex Hull)问题求解--Gift-Wrapping 算法

2024-03-11 09:18

本文主要是介绍凸包(Convex Hull)问题求解--Gift-Wrapping 算法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 凸包问题(Convex Hull)求解--卷包裹(Gift-Wrapping) 算法

  1.前言

       最近在做MIT 6.031的问题集0时遇到了要计算凸包的问题,题中提示要用Gift Wrapping算法。作为一个在实际工程中需要应用的求解算法来讲它并不是最好的,因为它有着O(nh)的时间复杂度,但是我们依然可以通过它更好地理解问题的实质。更好地学习和应用这个基本算法。

 2.Convex Hull 问题概述

      百度百科中给出的定义为:

凸包(Convex Hull)是一个计算几何(图形学)中的概念。

在一个实数向量空间V中,对于给定集合X,所有包含X的凸集的交集S被称为X的凸包。X的凸包可以用X内所有点(X1,...Xn)的凸组合来构造.

在二维欧几里得空间中,凸包可想象为一条刚好包著所有点的橡皮圈。

用不严谨的话来讲,给定二维平面上的点集,凸包就是将最外层的点连接起来构成的凸多边形,它能包含点集中所有的点。

     通俗来说,二维的凸包就是在平面上给定的若干个点组成的点集中选取最外围的点,使得他们的连线组成的多边形能够覆盖全部的点。并且这些点应当满足以下两个条件:

(1)组成的凸多边形能够覆盖所有的点

(2)所选取的点数越少越好

MIT 6.031 problem Set 0 中给出了具体的设计规约:

    /*** Given a set of points, compute the convex hull, the smallest convex set that contains all the points * in a set of input points. The gift-wrapping algorithm is one simple approach to this problem, and * there are other algorithms too.* * @param points a set of points with xCoords and yCoords. It might be empty, contain only 1 point, two points or more.* @return minimal subset of the input points that form the vertices of the perimeter of the convex hull*/

3.卷包裹(Gift-Wrapping 算法)

3.1算法思想

该算法的思想为

1、首先选取一个最靠边界的点(例如最左上或最右下,我选的最左上)作为起始点,以这个点为基准开始选择下一个点。

2、遍历点集,考察它们相对于基准点所偏转的角度:(即目标点与基准点连线与当前基准点朝向的方向形成的射线所形成的角度),第一个点所朝向的角度设置为0。其中将以north(正上)方向为基准的顺时针偏转角定义为朝向的角度。在点集中选出偏转角最小的点作为下一个点并将其加入结果点集,同时将基准点设置为该点。

3、重复过程2,直至选取的点为起始点。

需要注意的是:在两个点偏转角度相同时,为保证所选取的点数最少,应该选取与基准点距离更大的点。

3.2代码实现(使用Java实现)

首先将点(Point)定义如下:

public class Point {private final double x;private final double y;/*** Construct a point at the given coordinates.* @param x x-coordinate* @param y y-coordinate*/public Point(double x, double y) {this.x = x;this.y = y;}/*** @return x-coordinate of the point*/public double x() {return x;}/*** @return y-coordinate of the point*/public double y() {return y;}
}

然后是具体的方法:

import java.util.Set;
import java.util.HashSet;
public class TurtleSoup {/*** Given the current direction, current location, and a target location, calculate the Bearing* towards the target point.* * The return value is the angle input to turn() that would point the turtle in the direction of* the target point (targetX,targetY), given that the turtle is already at the point* (currentX,currentY) and is facing at angle currentBearing. The angle must be expressed in* degrees, where 0 <= angle < 360. ** * @param currentBearing current direction as clockwise from north* @param currentX current location x-coordinate* @param currentY current location y-coordinate* @param targetX target point x-coordinate* @param targetY target point y-coordinate* @return adjustment to Bearing (right turn amount) to get to target point,*         must be 0 <= angle < 360*/public static double newCalculateBearingToPoint(double currentBearing, double currentX, double currentY,double targetX, double targetY) {//计算偏转角度double hei=Math.abs(currentY-targetY);double wid=Math.abs(currentX-targetX);double slop = Math.sqrt(hei*hei+wid*wid);double CAngle =Math.toDegrees(Math.asin(wid/slop));double TAngle;if(currentX>=targetX&&currentY>targetY) {TAngle=180+CAngle;}else if(currentX>targetX&&currentY<=targetY) {TAngle=360-CAngle;}else if(currentX<targetX&&currentY>=targetY) {TAngle=180-CAngle;}else if(currentX<=targetX&&currentY<targetY) {TAngle=CAngle;}else {return 359;}return (TAngle>=currentBearing)?(TAngle-currentBearing):(360-(currentBearing-TAngle));}public static double calculateDistance(double currentX,double currentY,double targetX,double targetY) {//计算两点距离double wid = Math.abs(currentX-targetX);double hei = Math.abs(currentY-targetY);return Math.sqrt(wid*wid+hei*hei);}/*** Given a set of points, compute the convex hull, the smallest convex set that contains all the points * in a set of input points. The gift-wrapping algorithm is one simple approach to this problem, and * there are other algorithms too.* * @param points a set of points with xCoords and yCoords. It might be empty, contain only 1 point, two points or more.* @return minimal subset of the input points that form the vertices of the perimeter of the convex hull*/public static Set<Point> convexHull(Set<Point> points) {if(points.size()<=2) {return points;}HashSet<Point> result =new HashSet<Point>();Point tmp=points.iterator().next();Point start = tmp;Point targ = tmp;double angle = 0,a1=0,at=0;for(Point p:points) {if(p.x()<start.x()||p.x()==start.x()&&p.y()>start.y())start = p;}result.add(start);Point ptr = start;while(true) {at=TurtleSoup.newCalculateBearingToPoint(angle, ptr.x(), ptr.y(), targ.x(), targ.y());for(Point q:points) {if(targ==q)continue;a1=TurtleSoup.newCalculateBearingToPoint(angle, ptr.x(), ptr.y(), q.x(), q.y());if(a1<at) {//选择偏转角度最小的targ =q;at=a1;}else if(a1==at) {//选择距离更大的double dist=TurtleSoup.calculateDistance(ptr.x(), ptr.y(), targ.x(), targ.y());double dis1=TurtleSoup.calculateDistance(ptr.x(), ptr.y(), q.x(), q.y());if(dis1>dist) {targ=q;at=a1;}}}if(targ == start)//终止条件break;else {angle=at;result.add(targ);ptr =targ;}}return result;}
}

  3.3时间复杂度分析

该算法时间复杂度为O(nh),其中n为所有点的个数,h为凸包中点的个数。

这篇关于凸包(Convex Hull)问题求解--Gift-Wrapping 算法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/797372

相关文章

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

SpringBoot实现MD5加盐算法的示例代码

《SpringBoot实现MD5加盐算法的示例代码》加盐算法是一种用于增强密码安全性的技术,本文主要介绍了SpringBoot实现MD5加盐算法的示例代码,文中通过示例代码介绍的非常详细,对大家的学习... 目录一、什么是加盐算法二、如何实现加盐算法2.1 加盐算法代码实现2.2 注册页面中进行密码加盐2.

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu

MySQL新增字段后Java实体未更新的潜在问题与解决方案

《MySQL新增字段后Java实体未更新的潜在问题与解决方案》在Java+MySQL的开发中,我们通常使用ORM框架来映射数据库表与Java对象,但有时候,数据库表结构变更(如新增字段)后,开发人员可... 目录引言1. 问题背景:数据库与 Java 实体不同步1.1 常见场景1.2 示例代码2. 不同操作

Java时间轮调度算法的代码实现

《Java时间轮调度算法的代码实现》时间轮是一种高效的定时调度算法,主要用于管理延时任务或周期性任务,它通过一个环形数组(时间轮)和指针来实现,将大量定时任务分摊到固定的时间槽中,极大地降低了时间复杂... 目录1、简述2、时间轮的原理3. 时间轮的实现步骤3.1 定义时间槽3.2 定义时间轮3.3 使用时

如何解决mysql出现Incorrect string value for column ‘表项‘ at row 1错误问题

《如何解决mysql出现Incorrectstringvalueforcolumn‘表项‘atrow1错误问题》:本文主要介绍如何解决mysql出现Incorrectstringv... 目录mysql出现Incorrect string value for column ‘表项‘ at row 1错误报错

如何解决Spring MVC中响应乱码问题

《如何解决SpringMVC中响应乱码问题》:本文主要介绍如何解决SpringMVC中响应乱码问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC最新响应中乱码解决方式以前的解决办法这是比较通用的一种方法总结Spring MVC最新响应中乱码解

pip无法安装osgeo失败的问题解决

《pip无法安装osgeo失败的问题解决》本文主要介绍了pip无法安装osgeo失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 进入官方提供的扩展包下载网站寻找版本适配的whl文件注意:要选择cp(python版本)和你py

解决Java中基于GeoTools的Shapefile读取乱码的问题

《解决Java中基于GeoTools的Shapefile读取乱码的问题》本文主要讨论了在使用Java编程语言进行地理信息数据解析时遇到的Shapefile属性信息乱码问题,以及根据不同的编码设置进行属... 目录前言1、Shapefile属性字段编码的情况:一、Shp文件常见的字符集编码1、System编码

Spring MVC使用视图解析的问题解读

《SpringMVC使用视图解析的问题解读》:本文主要介绍SpringMVC使用视图解析的问题解读,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC使用视图解析1. 会使用视图解析的情况2. 不会使用视图解析的情况总结Spring MVC使用视图