CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 算法复杂度

搜索资源列表

  1. 新c++我们的呀

    0下载:
  2. 按时org,开放的网络天书! 基数排序是这样实现的: 假设需排序数列的取值...如果化成比较树可以知道,这样的排序算法复杂度的下限是O(N*lnN),而基数排序没有比较元素,所以所需排序时间就少了,我们... www.cnic.org/wiki/鍩烘暟鎺掑-time org, open network hieroglyphics! Sort base is achieved : a few assumptions need to sort out ... If the value into
  3. 所属分类:状态条

    • 发布日期:2008-10-13
    • 文件大小:5507
    • 提供者:相同
  1. MPEG2编解码源码

    0下载:
  2. 此编码在tm5模型的基础上由peter进行了修改,降低了算法复杂度,提高了实时性。
  3. 所属分类:多媒体编程

  1. 排序算法效率比较

    1下载:
  2. 分别实现选择排序,插入排序,归并排序,快速排序,分析他们的时间复杂度,并用程序统计他们实际运行的时间(随机产生20000个数),有简单界面。
  3. 所属分类:Windows编程

    • 发布日期:2010-11-28
    • 文件大小:14426
    • 提供者:wsxdrv
  1. Algorithm

    0下载:
  2. 通过时、空复杂度,对算法在具体问题上的性能进行分析。PPT,很适合算法爱好者学习参考-Through time and space complexity of the algorithm in the performance of specific issues for analysis. PPT, lovers learning algorithm is very suitable reference
  3. 所属分类:Other systems

    • 发布日期:2017-05-10
    • 文件大小:2334478
    • 提供者:superduck1
  1. qinjiushaosuanfa

    0下载:
  2. 菜鸟编程。。仅供参考。在数值计算中解多项式的简单算法:秦九韶算法,算法复杂度 n*(n+1)/2-Programming rookie. . Is for reference only. In the numerical calculation of a simple polynomial solution algorithm: Qin Jiushao algorithm complexity of n* (n+ 1)/2
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:163407
    • 提供者:cathy
  1. createpassword

    0下载:
  2. 在许多情况下我们需要穷举组合的算法,比如密码词典。 //这个算法的关键是密码下标进位的问题。 //另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。 如果要提高写文件的效率,可以使用缓冲区,分批写入。 -In many cases we need to exhaustive combinations of algorithms, such as the password dictionary.// This algorithm, the key is passwor
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:921
    • 提供者:王文娟
  1. yich

    0下载:
  2. 遗传算法就是那么点东西呗,就是在一个域内搜索最优解, 比如那个配送中心选址,如果用最低级的算法, 它的复杂度是C(n,m)*n!以上对吧?然后用遗传算法就可以使得复杂度降低呗, 迅速达到收敛。<br/>遗传算法的确是目前的一个在很多领域都比较先进的求解算法,你去搜一下它的原理看看吧, 我写程序之前光看这个算法的原理就看了两三天才全看明白。 这是我用vb写的遗传算法程序。是一些通用代码,与具体问题对应的代码空出来,用的时候填进去。根据我的经验,要想用好遗传算法,代码
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:2800
    • 提供者:liumengqian
  1. biaodashiqiuzhi

    0下载:
  2. 本程序的主要功能在对起泡排序,直接插入排序,简单选择排序,快速排序,希尔排序,堆排序六种内部排序算法的时间复杂度进行比较.主要工作是设法在已知算法中的适当位置插入对关键字的比较次数和移动次数的操作.记录比较次数,移动次数,实现对六种算法复杂度的比较-The primary function of this process in the bubble sort, insertion sort of direct, simple options to sort, quick sort, Hill s
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1928
    • 提供者:Jun
  1. 2

    0下载:
  2. 扩展欧几里德算法不但能计算(a,b)的最大公约数,而且能计算a模b及b模a的乘法逆元。平方和乘算法的复杂度:执行次数至少要k次模乘,最多需要2k次模乘。-Extended Euclidean algorithm for computing not only (a, b) the common denominator, and to calculate a modulus b and b modulus a multiplicative inverse of. Square and by the
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:1087
    • 提供者:俞佳
  1. Timing

    0下载:
  2. 这是一个通过选择排序算法的计时来获得该算法的时间复杂度的程序。-This is a sorting algorithm by selecting the time to obtain the algorithm' s time complexity of the procedure.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:1051
    • 提供者:cuijiao
  1. C

    0下载:
  2.  二分查找又称折半查找,它是一种效率较高的查找方法。   【二分查找要求】:1.必须采用顺序存储结构 2.必须按关键字大小有序排列。   【优缺点】折半查找法的优点是比较次数少,查找速度快,平均性能好 其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。   【算法思想】首先,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:515
    • 提供者:pxs
  1. goldIssuse

    0下载:
  2. 关于算法设计中金币阵列问题的实现程序,算法复杂度较低-Algorithm design in gold on the issue of implementation of procedures for the array, the algorithm complexity is low
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1443
    • 提供者:zhou
  1. main2

    0下载:
  2. 使用c++解决算法中的社会名流问题:找出一组人中,被所有其他人认识,同时不认识其他人的人,算法复杂度为O(n)-Algorithm using c++ to solve the problem of the celebrities: to find a group of people, by all the other people understand, while others who do not know, the algorithm complexity is O (n)
  3. 所属分类:Other systems

    • 发布日期:2017-03-22
    • 文件大小:172077
    • 提供者:丁欢
  1. A

    3下载:
  2. OFDMA系统中低复杂度比例公平资源分配算法(原文+代码)-Adaptive Resource Allocation in Multiuser OFDM Systems With Proportional Rate Constraints
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:761854
    • 提供者: 20066995
  1. agnes

    0下载:
  2. 此源程序为层次聚类中AGNES聚类法算法部分,测试数据须自己输入,测试前最好先看下源码 测试数据只有2个属性,可根据自己需求修改数据结构体属性个数,与对象间欧式距离计算函数 本源码若算法复杂度有可改进的地方或有BUG请高手指出,计算500条以上的数据时须耐心等待结果 -The source code for the hierarchical clustering algorithm in part AGNES clustering method, the test data requ
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:2072
    • 提供者:odile zhu
  1. matrix_compute

    0下载:
  2. 该程序用于计算矩阵的乘方和,采用算法设计中的分治法实现,计算速度快,算法复杂度低。-Involution of the procedures used to calculate the matrix using the divide and conquer algorithm design to achieve calculation speed, low complexity of the algorithm.
  3. 所属分类:Console

    • 发布日期:2017-11-20
    • 文件大小:695018
    • 提供者:liubin
  1. 排序算法比较

    0下载:
  2. 1. 掌握各种排序的基本思想。 2. 掌握各种排序方法的算法实现。 3. 掌握各种排序方法的优劣分析及花费的时间的计算。 4. 掌握各种排序方法所适应的不同场合。(1. master the basic idea of sorting. 2. master various sorting methods of the algorithm. 3., grasp the advantages and disadvantages of various sorting methods and
  3. 所属分类:Windows编程

    • 发布日期:2017-12-23
    • 文件大小:421888
    • 提供者:WHOAMI
  1. 7

    0下载:
  2. 7 基于纹理复杂度和差分的抗盲检测图像隐写算法(7 against blind detection based on texture complexity and difference image steganography algorithm)
  3. 所属分类:其他

    • 发布日期:2017-12-26
    • 文件大小:423936
    • 提供者:lushannanlu
  1. 5

    0下载:
  2. 5 基于图像复杂度的数字水印算法digital watermarking algorithm based on image complexity(digital watermarking algorithm based on image complexity)
  3. 所属分类:其他

    • 发布日期:2017-12-28
    • 文件大小:353280
    • 提供者:yuelu6
  1. 算法时间复杂度的实验测试

    0下载:
  2. 以堆排序算法为例,改变输入规模n,测试算法时间复杂度(Time complexity of algorithm)
  3. 所属分类:其他

    • 发布日期:2018-05-06
    • 文件大小:172032
    • 提供者:xiaoyisha
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com