搜索资源列表

  1. ZUIXINDI

    0下载:
  2. 最接近点对问题,分治法实现,随机生成N个数寻找最短路径的两个点-closest point of the problem, realizing the partition method, random number generation N to find the shortest path to the two points
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:1369
    • 提供者:张亮
  1. 最接近点对问题

    0下载:
  2. 最接近点对问题的源码。使用dephi编写而成。-closest point to the source. Dephi use prepared.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:181022
    • 提供者:陈琳
  1. nearpiont

    0下载:
  2. 最接近点对问题是求二维坐标中的点对问题,该算法是为了将平面上点集S线性分割为大小大致相等的2个子集S1和S2,我们选取一垂直线l:x=m来作为分割直线。其中m为S中各点x坐标的中位数。由此将S分割为S1={p∈S|px≤m}和S2={p∈S|px>m}。从而使S1和S2分别位于直线l的左侧和右侧,且S=S1∪S2 。由于m是S中各点x坐标值的中位数,因此S1和S2中的点数大致相等。 递归地在S1和S2上解最接近点对问题,我们
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:15666
    • 提供者:黄波
  1. ClosestNodePairs

    0下载:
  2. 这是最接近点对问题,分别使用了分治算法和穷举法求解最接近点对。-it is the closest point of the problem, namely the use of a divide-and-conquer method and exhaustive closest point right.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:4470
    • 提供者:润卿
  1. 123

    0下载:
  2. 三维最接近点对,这是比较详细的描述,可以根据此思想来编程
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:88852
    • 提供者:sdont
  1. Algorithm

    0下载:
  2. 本文章首先简要介绍了一维与二维情况下的最接近点对问题与所涉及到的解决算法.然后,把最接近点对问题延伸至三维,提出了自己的解决思想,并提供了相关伪代码,以供参考.请各位朋友多提建议!
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:544549
    • 提供者:刘志辉
  1. Cpair3

    0下载:
  2. 上次上载了一篇有关三维空间最接近点对的论文,但是源码没有找到.今天终于找到了,现在上传上来,以供参考.
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:2466
    • 提供者:刘志辉
  1. 实验报告-最接近点对

    0下载:
  2. 关于最接近点对问题的基本思想运行结果测试平台以及源码-closest point on the basic issue of right thinking operating results and the source test platform
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:10182
    • 提供者:wjf
  1. 一维最近点(分治法)2

    0下载:
  2. 该程序实现对一维数据轴上的最临近点的求解问题 采用方法:分治方法(找出中位数,两边递归)-the process of achieving a dimensional data axis near the point of the methodology used to solve the problem : the administration (to identify the median on both sides, the re
  3. 所属分类:Windows编程

    • 发布日期:2024-06-16
    • 文件大小:2048
    • 提供者:杨晨
  1. 实验报告-最接近点对

    0下载:
  2. 关于最接近点对问题的基本思想运行结果测试平台以及源码-closest point on the basic issue of right thinking operating results and the source test platform
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-06-16
    • 文件大小:10240
    • 提供者:wjf
  1. ZUIXINDI

    0下载:
  2. 最接近点对问题,分治法实现,随机生成N个数寻找最短路径的两个点-closest point of the problem, realizing the partition method, random number generation N to find the shortest path to the two points
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-16
    • 文件大小:1024
    • 提供者:张亮
  1. 最接近点对问题

    0下载:
  2. 最接近点对问题的源码。使用dephi编写而成。-closest point to the source. Dephi use prepared.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-06-16
    • 文件大小:181248
    • 提供者:陈琳
  1. nearpiont

    0下载:
  2. 最接近点对问题是求二维坐标中的点对问题,该算法是为了将平面上点集S线性分割为大小大致相等的2个子集S1和S2,我们选取一垂直线l:x=m来作为分割直线。其中m为S中各点x坐标的中位数。由此将S分割为S1={p∈S|px≤m}和S2={p∈S|px>m}。从而使S1和S2分别位于直线l的左侧和右侧,且S=S1∪S2 。由于m是S中各点x坐标值的中位数,因此S1和S2中的点数大致相等。 递归地在S1和S2上解最接近点对问题,我们
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-16
    • 文件大小:15360
    • 提供者:黄波
  1. ClosestNodePairs

    0下载:
  2. 这是最接近点对问题,分别使用了分治算法和穷举法求解最接近点对。-it is the closest point of the problem, namely the use of a divide-and-conquer method and exhaustive closest point right.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-16
    • 文件大小:4096
    • 提供者:润卿
  1. Algorithm

    0下载:
  2. 本文章首先简要介绍了一维与二维情况下的最接近点对问题与所涉及到的解决算法.然后,把最接近点对问题延伸至三维,提出了自己的解决思想,并提供了相关伪代码,以供参考.请各位朋友多提建议!-err
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-16
    • 文件大小:544768
    • 提供者:刘志辉
  1. Cpair3

    0下载:
  2. 上次上载了一篇有关三维空间最接近点对的论文,但是源码没有找到.今天终于找到了,现在上传上来,以供参考.-Last upload an article on the three-dimensional space the closest points of the thesis, but source not found. Today, finally found, and now upload up for reference.
  3. 所属分类:OpenGL

    • 发布日期:2024-06-16
    • 文件大小:2048
    • 提供者:刘志辉
  1. report+of+Algorithm

    0下载:
  2. 算法设计的实验报告 包括Bottom-Up Merge Sorting算法、插入排序算法Heaps的创建堆、堆排序算法、按秩合并算法以及带路径压缩算法、实现查找第K小元素算法、实现快速排序算法、实现平面内最接近点对算法、实现最长公共子序列算法、实现矩阵链相乘算法、实现0/1背包问题算法、实现Dijistra’s算法、Prim算法、Kruskal算法、文件压缩算法-Experimental Algorithm Design Repor
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-16
    • 文件大小:28672
    • 提供者:苏宁
  1. yiwei

    0下载:
  2. 完成一维的最接近点对问题,用的是分治算法进行的-The closest point to complete one-dimensional problem, using a partition algorithm of
  3. 所属分类:WEB源码

    • 发布日期:2024-06-16
    • 文件大小:43008
    • 提供者:chasel
  1. zjjdd

    0下载:
  2. 最接近点对问题,是算法设计中的经典问题,通过平面上找与给定点最接近的点形成最接近点对。-Closest point problem is a classical problem in algorithm design, through the plane to find the closest point with the formation of a given point closest point pairs.
  3. 所属分类:其他小程序

    • 发布日期:2024-06-16
    • 文件大小:1024
    • 提供者:
  1. the-nearest-point

    0下载:
  2. 算法分析实验中,用递归与分治算法实现的最接近点对实验,编程环境为vc-Algorithm analysis experiments, using a recursive divide and conquer algorithm with the nearest point of the experiment, vc++ programming environment
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-06-16
    • 文件大小:22528
    • 提供者:李雪薇
« 12 3 »

源码中国 www.ymcn.org