CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - algorithm complexity

搜索资源列表

  1. hebingxulie

    0下载:
  2. 复杂度比冒泡法更低的排序算法,合并序列排序法-complexity law bubbling lower than the ranking algorithm, combined sequence Sort
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.39kb
    • 提供者:Wiracle
  1. LJTHREE

    2下载:
  2. 假设定义堆为满足如下性质的完全三叉树:(1)空树为堆;(2)根结点的值不小于所有子树根的值,且所有子树均为堆。编写利用上述定义的堆进行排序的算法,并分析推导算法的时间复杂度。-assumptions to meet the definition of reactor following the complete nature of the trigeminal tree : (1) Air trees reactor; (2) The root node is not less than the
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:70.93kb
    • 提供者:liujing
  1. zuoye4

    0下载:
  2. 这是用VC++写的中序排序算法的程序,排序的时间复杂度低!-This is the VC was the order algorithm procedures, scheduling time low complexity!
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:44.37kb
    • 提供者:崔留强
  1. sort 实现几种典型排序方法

    1下载:
  2. 实现几种典型排序方法:a) Insertion Sort;b) Selection Sort;c) Bubble Sort;d) Rank Sort 分析算法的时间复杂度并测量其实际运行时间。-Order to achieve several typical methods: a) Insertion Sort b) Selection Sort c) Bubble Sort d) Rank Sort algorithm' s time complexity analysis and me
  3. 所属分类:书籍源码

    • 发布日期:2017-03-26
    • 文件大小:4.27kb
    • 提供者:Yuan
  1. parallel-dijkstra 并行化思路实现dijkstra算法

    0下载:
  2. 并行化思路实现dijkstra算法。假设有p个处理器,N个顶点。给每个处理器分配N/p个顶点,求出局部的最小值,复杂度为O (N/p)。然后后一半的处理器将自己的最小值发送给第前p/2个处理器。前一半处理器接收到传来的值后,与局部的最小值比较,作为新值。继续循环,直到剩下一个处理器为止。-Parallelized dijkstra algorithm. Suppose there is p a processor, N vertex. Give each processor distributi
  3. 所属分类:并行运算

    • 发布日期:2017-03-23
    • 文件大小:726.93kb
    • 提供者:joyce
  1. MATLAB-code-of-OFDMA-power-allocation

    0下载:
  2. ofdma功率分配经典文献 "A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems"的相应MATLAB代码-MATLAB code for the corresponding OFDMA power allocation classic literature "A Low Complexity Algorithm for Proportional Resource Allocation i
  3. 所属分类:source in ebook

    • 发布日期:2017-03-21
    • 文件大小:13.4kb
    • 提供者:andyking
  1. EEG

    0下载:
  2. 脑电信号的分析算法的全面概述,包含李氏指数复杂度等-EEG analysis algorithm overview, including complexity, such as Lyapunov exponent
  3. 所属分类:assembly language

    • 发布日期:2017-03-28
    • 文件大小:174.75kb
    • 提供者:
  1. mgqj

    0下载:
  2. 可以输入一个任意大小的迷宫数据,用非递归的方法求出一条走出迷宫的路径,并将路径输出; 要求: 在上交资料中请写明:存储结构、基本算法(可以使用程序流程图)、源程序、测试数据和结果、算法的时间复杂度、另外可以提出算法的改进方法; -Can enter a maze of any size data, with non-recursive method to derive a path out of the maze, and the path output requirements
  3. 所属分类:assembly language

    • 发布日期:2017-03-29
    • 文件大小:6.34kb
    • 提供者:迟浩东
  1. BFS_CUDA

    0下载:
  2. 用CUDA实现BFS算法源码。CUDA是NV公司基于GPU的统一计算架构,BFS复杂度由CPU上的O(V+E)降为O(diameter),直径diameter即图中root到leaf的最长距离。-This is the algorithm of BFS(breadth first search) on CUDA, and its time complexity is down to O(diameter) which diameter means the longest distance bet
  3. 所属分类:MPI

    • 发布日期:2017-03-29
    • 文件大小:1.28kb
    • 提供者:iJuliet
  1. z.shen.wang

    2下载:
  2. "A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems"关于子载波和功率分配的代码,对应这篇文章,大家共同学习。希望大家提供的源码带上原文,以便研究。-" A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems" With regard to the allocati
  3. 所属分类:source in ebook

    • 发布日期:2017-03-27
    • 文件大小:162.5kb
    • 提供者:赵子顾
  1. 200741119366291

    0下载:
  2. 速度飞快的数独计算器,基本的原理就是递归搜索,但在检查9个3*3小方块的时候使用了复杂度为O(1)的算法,使得求解速度极快 使用方法: 使用方法: STEP One:在文本文档中 写入81个数(待填的用0表示,每九个换行,每两个数之间空一个) 保存为 input.in(注意后缀) 运行 “数独终结者.exe” 文件夹内会生成一个Answer.out的文件,用文本打开,便是答案 (bestshudu.pas是源程序) -Sudoku calculator fast sp
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-03
    • 文件大小:30.28kb
    • 提供者:cc5432166
  1. paixu

    0下载:
  2. 用分治法,实现对n个元素进行排序的算法,并进行时间复杂性分析。-With the Method, to achieve the sort n elements in the algorithm, and the time complexity analysis.
  3. 所属分类:assembly language

    • 发布日期:2017-04-11
    • 文件大小:625byte
    • 提供者:李明
  1. GSM-voice-cipher

    1下载:
  2. 一种基于GSM的低码率语音信息隐秘传输方法。 本文描述了一种可将一路低码率2.4kb/s混合激励线性预测(MELP)编码语音信息,隐藏在另一路13kb/s的GSM编码语音中,通过公共信道隐秘传输的方法。文中给出了一种新的数据嵌入方法,该方法以一个单位增广矩阵为基础,可在(2L+1)比特可修改信息中嵌入2L比特数据信息,而最多只需修改£比特宿主信息,有较高的数据嵌入率,算法计算复杂度较低,较易于硬件实现,且对宿主信息的影响也较少。-GSM-based low bit rate voice co
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-29
    • 文件大小:790.73kb
    • 提供者:郝清
  1. melp

    0下载:
  2. 改进后的MELP声码器算法在保证重建语音质量没有多大降低的前提下,大大降低了原有算法的复杂度-Improved MELP vocoder algorithm has reconstructed speech quality is not much lower under the premise of the original algorithm greatly reduces the complexity
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-04-10
    • 文件大小:1.06mb
    • 提供者:杨亚欣
  1. LMS

    0下载:
  2. 在一种变步长算法基础上, 从语音信号相关性的角度出发, 提出了一种新的去相关变步长LMS 算法( DCL—NLMS) 。该算 法结构简单, 收敛速度快, 稳态失调小, 计算量与NLMS 算法相当。仿真结果表明, 该算法在处理强相关性信号时, 不仅收敛速度明 显快于其余算法, 而且稳态失调特性也有很大优势-Based on the variable step NLMS arithmetic, this paper proposes a new uncorrelated variable s
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-31
    • 文件大小:433.9kb
    • 提供者:李丽
  1. dongtaiguihua

    0下载:
  2. 算法中有关动态规划问题的源码,算法简介,运行效率高,时间和空间复杂性都很小-Dynamic programming algorithm for the problem of source code, algorithm profile, high efficiency, time and space complexity are very small
  3. 所属分类:OS Develop

    • 发布日期:2017-05-06
    • 文件大小:1.25mb
    • 提供者:wangqingan
  1. low-complexity-noise-estimation

    0下载:
  2. 一种低复杂度的噪声谱跟踪算法,用于语音增强和语音识别中,文件夹内有参考文献。-A low noise spectral tracking algorithm complexity, for speech enhancement and speech recognition, there are references folder.
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-04-07
    • 文件大小:316.75kb
    • 提供者:尹海明
  1. ShortestPath

    0下载:
  2. 实现最短路径dijkestra算法,算法复杂度低,效率高-Dijkestra shortest path algorithm, algorithm complexity low, high efficiency
  3. 所属分类:MiddleWare

    • 发布日期:2017-04-14
    • 文件大小:3.36kb
    • 提供者:qqqq
  1. HM-10.0rc1_init

    0下载:
  2. H.265是ITU-T VCEG 继H.264之后所制定的新的视频编码标准。H.265标准围绕着现有的视频编码标准H.264,保留原来的某些技术,同时对一些相关的技术加以改进。新技术使用先进的技术用以改善码流、编码质量、延时和算法复杂度之间的关系,达到最优化设置。具体的研究内容包括:提高压缩效率、提高鲁棒性和错误恢复能力、减少实时的时延、减少信道获取时间和随机接入时延、降低复杂度等。H264由于算法优化,可以低于1Mbps的速度实现标清数字图像传送;H265则可以实现利用1~2Mbps的传输速度
  3. 所属分类:编译器/解释器

    • 发布日期:2018-01-10
    • 文件大小:1.27mb
    • 提供者:DaisyK
  1. h.265

    0下载:
  2. H.265是ITU-T VCEG 继H.264之后所制定的新的视频编码标准。H.265标准围绕着现有的视频编码标准H.264,保留原来的某些技术,同时对一些相关的技术加以改进。新技术使用先进的技术用以改善码流、编码质量、延时和算法复杂度之间的关系,达到最优化设置。具体的研究内容包括:提高压缩效率、提高鲁棒性和错误恢复能力、减少实时的时延、减少信道获取时间和随机接入时延、降低复杂度等。H264由于算法优化,可以低于1Mbps的速度实现标清数字图像传送;H265则可以实现利用1~2Mbps的传输速度
  3. 所属分类:编译器/解释器

    • 发布日期:2018-01-10
    • 文件大小:15.5mb
    • 提供者:DaisyK
« 12 »
搜珍网 www.dssz.com