CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 最近点

搜索资源列表

  1. nearestPointPair

    0下载:
  2. 给定一个点数组,比较求解最近点对的一般算法和分治法的效率。-Given a point group, compared to solve the nearest point on the general algorithm and divide and conquer efficiency.
  3. 所属分类:Other systems

    • 发布日期:2017-05-20
    • 文件大小:5881473
    • 提供者:Jimin
  1. ClosetPairs

    0下载:
  2. 本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小于n/2属于左边的点集PL,取下标大于n/2属于右边的点集PR,即用O(1)时间就可以将规模为n的问题分解为两个规模为n/2的、同类型的子问题。分割完毕之后就可以采用分治法,分别求出PL和PR中的最近点对,最终通过递归实现。-This algorithm uses divide and conquer to solve the probl
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:25317
    • 提供者:lhguo
  1. lianbiao

    0下载:
  2. 实现链表的数据读入,查找,查找最近点等基本功能,适合于初次学习链表数据结构的学者。-The realization of the data read into the list, find, find the basic functions such as nearest point for the initial learning of the scholars list data structure.
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:25956
    • 提供者:zhangwen
  1. NearestPoints

    0下载:
  2. 分别利用分治法及穷举法求解最近点对问题,输出查找结果及比较次数。-Use, respectively, sub-rule method and brute-force method for solving the nearest point of the problem, the output and compare the number of search results.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:2534
    • 提供者:yushu
  1. KitBag

    1下载:
  2. 分治法和蛮力法求解最近点对问题,不好意思中文传不了,改传背包问题了。-leastport
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:14224
    • 提供者:刘恩亮
  1. Divfuntion

    0下载:
  2. 算法分析实验 算法分析分治法 最近点对问题-Experimental analysis of algorithms analysis of algorithms divide and conquer the nearest point of the problem
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:2295
    • 提供者:tabuiy
  1. shortestpath

    0下载:
  2. 用蛮力法和分治法求最近点对的问题-用蛮力法和分治法求最近点对的问题............
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:452051
    • 提供者:wenwen
  1. zuijingdiandui

    0下载:
  2. 基于MFC单文档实现的最近点对的算法,是图形界面的-MFC single document based on the closest point to the realization of the algorithm is a graphical interface
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-29
    • 文件大小:12035662
    • 提供者:dahai
  1. nearestneighbor

    0下载:
  2. 用C编写的一个求最近点对的算法,不是很实用,但是对刚开始学习算法的人可能会有点帮助-C code .i wish this can do a little help to your study.
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:2307
    • 提供者:刘欢
  1. cloestPair

    0下载:
  2. 最近点对程序,java实现。可以计算平面内的最近点对-The nearest point on the program, java implementation. Can calculate the closest point on plane
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:79486
    • 提供者:yuanyifang
  1. zuijindianduierwei

    0下载:
  2. 算法 最近点对问题 二维的解决 很简单 值得-Closest point algorithm to solve the problem is very simple two-dimensional worth a look
  3. 所属分类:Other systems

    • 发布日期:2017-05-06
    • 文件大小:1265865
    • 提供者:林常来
  1. zuijindianduiyiwei

    0下载:
  2. 算法 最近点对 一维问题解决 可以下载下来研究下-Closest point algorithm to solve one-dimensional problem under study can be downloaded
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:897794
    • 提供者:林常来
  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. divide1

    0下载:
  2. 最近点对问题:分治法解决 时间复杂度:O(nlogn)-the closest point problem "divide and conquer" time complexity:O(nlogn)
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-06
    • 文件大小:1614
    • 提供者:cyy
  1. DistPoint

    0下载:
  2. 最近点对。编程之美上面的点对,使用了C++模板,效果还可以-the nearest point diatance
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-06
    • 文件大小:736612
    • 提供者:lilong
  1. closepointpair

    0下载:
  2. 使用Java实现的求最近点对的方法,实现了一个界面,可手动输入点或自动生成点-Using Java implementation of the nearest point on the way to achieve an interface that can be entered manually or automatically generate dot dot
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:12710
    • 提供者:Sabrina Chen
  1. algorithm_project2

    0下载:
  2. 这是求在一堆点中,找出最短距离的两个点对的算法问题。(Point pair problem with the shortest distance.)
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:14117888
    • 提供者:素餐尸位
  1. 最近点对

    0下载:
  2. vs2010 c++解决最近点对问题,适合初学者(closest pair, for beginners)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:865280
    • 提供者:Echo-bcy
  1. ClosestPair

    0下载:
  2. 求解平面最近点对,分治经典题目。。。。。。。(The program to solve the nearest point pair of the plane, divide and conquer the classic topic.)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:1024
    • 提供者:irishan
  1. 迭代最近点算法综述

    0下载:
  2. 三维点集配准问题是计算机技术中的一个极其重要的问题,作为解决三维点集配准问题的一个应用较为广泛的算法,ICP算法得到了研究者的关注,本文以一种全新的思路从配准元素的选择、配准策略的确定和误差函数的求解等3个方面对三维点集配准的ICP算法的各种改进和优化进行了分类和总结。(The three-dimensional point set registration problem is an extremely important issue in computer technology. As an
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:171008
    • 提供者:东大大
« 12 3 »
搜珍网 www.dssz.com