CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 最近点对

搜索资源列表

  1. pairdistance

    0下载:
  2. 在C语言环境下,实现寻找空间中最近点对的有效算法。-In the C language environment, to achieve search space, the nearest point on the efficient algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1441
    • 提供者:zhdxch
  1. Dataregistrationin3-Dscanningsystems

    0下载:
  2. 通过引入特征点和改进最近点迭代法, 提出了一种 在三维扫描系统中对三维点云数据进行配准的方法。该方法 通过对特征点的提取, 首先得到一组匹配点对, 然后运用 SVD 矩阵分解算法求出转换参数R 和T, 进而以此作为最 近点迭代法的初始值, 并对最近点的求法和迭代截止条件作 了改进, 得到了很好的配准效果。该文论述了该方法的基本 原理, 并通过不同视觉下物体三维测量点云数据配准的应用 实例证明了该方法的有效性。-A 3-D meas uring dat a r egis
  3. 所属分类:Special Effects

    • 发布日期:2017-04-03
    • 文件大小:155927
    • 提供者:jack
  1. fenzhifa

    0下载:
  2. 用c++实现分治法算法的最近点对问题(在VS2008平台上)-Using c++ implementation of divide and conquer algorithm for the nearest point of the problem (in VS2008 platform)
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:30770
    • 提供者:yan
  1. searchnearestnode

    0下载:
  2. 程序实现给定平面上N个点的坐标,找出距离最近的两个点.程序中是两种方法寻找最近点对。解法一的时间复杂度是O(N^2)解法二的时间复杂度是(N*lg2/lgN)第二种方法较第一种方法在一维情况下,时间复杂度改进了不少。但是这个方法不能推广到二维的情况,因为距离最近的点对不能保证是影射到某条直线之后紧靠着的两个点。-the procedure can realize the Coordinate which have N nodes ,find the nearest distance betwee
  3. 所属分类:Special Effects

    • 发布日期:2017-04-10
    • 文件大小:911
    • 提供者:徐天扬
  1. newsearchthenearestnode

    0下载:
  2. 程序实现给定平面上N个点的坐标,找出距离最近的两个点.程序中是两种方法寻找最近点对。解法一的时间复杂度是O(N^2)解法二的时间复杂度是(N*lg2/lgN)第二种方法较第一种方法在一维情况下,时间复杂度改进了不少。但是这个方法不能推广到二维的情况,因为距离最近的点对不能保证是影射到某条直线之后紧靠着的两个点。-the procedure can realize the Coordinate which have N nodes ,find the nearest distance betwee
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1046
    • 提供者:徐天扬
  1. Thenearestpointofthealgorithm

    0下载:
  2. 最近点对的算法实现,希望大家互相学习,提建议。希望对您有帮助-The nearest point of the algorithm, I hope you learn from each other suggestions. I hope for your help
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:178823
    • 提供者:无无无
  1. ClosestPairOfPoints

    0下载:
  2. 本文实现了平面内NlogN时间内,查找最近点对的算法,欢迎大家下载-This implements the plane NlogN time, find the nearest point of the algorithm, are welcome to download
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:27588
    • 提供者:张硕
  1. MinDistance_PointPair

    0下载:
  2. 用java实现的平面上最近点对的查找,包括蛮力法和分治法的实现。-Java implementation of the plane with the nearest point on the search, including the brute force method and the divide and conquer implementation.
  3. 所属分类:JSP源码/Java

    • 发布日期:2013-03-23
    • 文件大小:5254
    • 提供者:Michiel
  1. mincouplepoints

    0下载:
  2. 算法导论作业,求最近点对,vs2005,c++开发,复杂度o(nlogn)有图形交互界面,可以用鼠标设置点,也可以随机生成点,最多支持100万个点-Introduction to Algorithms job, find nearest points, vs2005, c++ development, complexity o (nlogn) with a graphical interface, you can set point with the mouse can also be rand
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-18
    • 文件大小:4998695
    • 提供者:lxq
  1. zuijindianwenti

    0下载:
  2. 这是我自己写的一个归并排序实现的最近点对问题的算法实现 -This is what I had written a merge sort to achieve the nearest point algorithm for the problem ~ ~
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2117
    • 提供者:王三麻子
  1. closestPairPoints

    0下载:
  2. 使用分治法求大量点中的最近点对.使用MFC做用户界面.10^6个点时间大约为0.1妙-Get the closest pair of points from points clouds by divide and conquer method. UI by MFC. It costs about 0.1 second computing from 1,000,000 points
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-04
    • 文件大小:95497
    • 提供者:sparrow
  1. Fib

    0下载:
  2. 算法分析基础——Fibonacci序列问题 分治法在数值问题中的应用——最近点对问题 减治法在组合问题中的应用——8枚硬币问题 变治法在排序问题中的应用——堆排序问题-The basis of algorithm analysis- Fibonacci sequence divide and conquer the problem of the numerical problems- the nearest point on the issue by governing law in
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1233772
    • 提供者:林海
  1. closed_point

    0下载:
  2. 最近点对的算法: 对给定数量的点,求其中点对的最短距离。(测试样本为1000,5000个点,跑出来的时间均为0(s))详细思路请看程序注释。-The nearest point of the algorithm: for a given number of points, find the point where the shortest distance. (1000,5000 the test sample points, running out of time are 0 (s))
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-10
    • 文件大小:1067345
    • 提供者:Steven
  1. NearestPoint

    0下载:
  2. 算法分析与设计经典问题,用分治法求最近点对,并与蛮力法做对比-Classical algorithm analysis and design problems with the divide and conquer method for the last point, and compared with the brute force method to do
  3. 所属分类:JavaScript

    • 发布日期:2017-04-08
    • 文件大小:1206
    • 提供者:娟娟
  1. ClosestPoints

    0下载:
  2. 暴力法和递归法求解最近点对问题(带图形界面)-Violence Act and the nearest point of a recursive method for solving the problem (with GUI)
  3. 所属分类:Data structs

    • 发布日期:2017-05-18
    • 文件大小:4880380
    • 提供者:邓国平
  1. closed-points

    0下载:
  2. 二维最近点对递归算法,最大点对为10000对-Two-dimensional nearest point of the recursive algorithm, the maximum point of the 10,000 pairs
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1334
    • 提供者:zibin_lee
  1. Closest-Pair-Point

    0下载:
  2. 寻找最近点对(... ... ... ... ... ... ...)-find closest path pair (.....................................)
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:11546
    • 提供者:lele
  1. closetpair

    0下载:
  2. 最近点算法,求若干个点之间的最近点对间的距离,给出横纵坐标!-Nearest point algorithm, find the number of points between the nearest point of the distance between the vertical and horizontal coordinates are given!
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1053
    • 提供者:沈强
  1. NearestPoint

    0下载:
  2. 使用分治法实现最近点对算法,图形化界面,可以通过鼠标点击生成点也可以随机生成,并计算得到最近点对-Divide and conquer method to achieve the closest point algorithm, graphical interface, can be generated by a mouse click can also be randomly generated, and calculated to the nearest point on
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:14277
    • 提供者:冷暖
  1. Ask-the-nearest-point

    0下载:
  2. 求最近点对点算法,关于如何求解最近的点对点问题的算法-Ask the nearest point of the algorithmAsk the nearest point of the algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:123100
    • 提供者:
« 1 2 3 45 6 7 8 9 »
搜珍网 www.dssz.com