CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 原理

搜索资源列表

  1. huffmancode

    0下载:
  2. 哈夫曼编码是一种常用的数据压缩技术,对数据文件进行哈夫曼编码可大大缩短文件的传输长度,提高信道利用率及传输效率。要求采用哈夫曼编码原理,统计文本文件中字符出现的词频,以词频作为权值,对文件进行哈夫曼编码以达到压缩文件的目的,再用哈夫曼编码进行译码解压缩。 统计待压缩的文本文件中各字符的词频,以词频为权值建立哈夫曼树,并将该哈夫曼树保存到文件中。 -Huffman coding is a commonly used data compression technology, Huffman
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1749
    • 提供者:PDH
  1. mySnakeGame

    0下载:
  2. 贪食蛇的c语言实现,方法和原理。Snake in the C language-Snake in the C language
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1180379
    • 提供者:吴邪
  1. stack_num_conversion

    0下载:
  2. C++栈基于类实现十进制转N进制;原理是不断求余倒序输出,采用栈的基本构造。-C++ stack class-based N-ary Decimal turn principle is to strive for more than reverse output, using the basic structure of the stack.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:644
    • 提供者:zh
  1. solider.cpp

    0下载:
  2. 士兵编队问题,将士兵按照特定的顺序编队,运用队栈的原理实现-Soldiers in formation problem, in accordance with the principle of soldiers in formation in a particular order, the use of stack implementation team
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:263301
    • 提供者:liwei
  1. tuihuafa

    0下载:
  2. 本程序主要讲述了退火算法,主要包括原理和主要程序。-This procedure describes the annealing algorithm, main principles and procedures, suitable for beginners to learn.
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:12035
    • 提供者:夏夜
  1. 2010011016_e8_p1

    0下载:
  2. 1、对给定的若干组数据,按照指定的阶数,根据最小二乘原理分别利用正规方程方法和QR 分解方法进行多项式拟合。 2、对给定的若干组数据,求经过这些点的插值多项式。 -1, for a given number of sets of data, according to the order specified in accordance with the principle of least squares methods are the use of the normal equatio
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:10133
    • 提供者:林宇
  1. dynamic-programming

    0下载:
  2. 动态规划(dynamic programming)是运筹学的一个分支,是求解决策过程(decision process)最优化的数学方法。20世纪50年代初美国数学家R.E.Bellman等人在研究多阶段决策过程(multistep decision process)的优化问题时,提出了著名的最优化原理(principle of optimality),把多阶段过程转化为一系列单阶段问题,利用各阶段之间的关系,逐个求解,创立了解决这类过程优化问题的新方法——动态规划。-Dynamic progr
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:49221
    • 提供者:cxd
  1. lcdyt

    7下载:
  2. 鉴于LCD方法存在的问题,本文提出了一种基于互相关匹配端点延拓局部特征尺度分解(Cross-correlation matching endpoint Extension Local Characteristic scale Decomposition,简称CELCD),由于LCD分解原理是依据信号的局部极值点信息不断进行筛分信号,在信号分解时需要先确定信号的局部极值点,而信号的两个端点可能不是极值点,因此在信号两端点就会出现虚假成分,且该现象随着分解的进行向数据内部扩散,产生端点效应,导致分解
  3. 所属分类:Data structs

    • 发布日期:2016-03-04
    • 文件大小:1024
    • 提供者:Grace
  1. Radix-Sort

    0下载:
  2. 基数排序是一种非比较型整数排序算法,其原理是将整数按位数切割成不同的数字,然后按每个位数分别比较。- Radix sort is a kind of non comparative sorting algorithm, which is based on the number of integers into different numbers, and then according to the number of each.
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:595935
    • 提供者:靳以2002
  1. Bucket-Sort

    0下载:
  2. 桶排序也叫箱排序。工作的原理是将数组分到有限数量的桶子里,每个桶子再个别排序(有可能再使用别的排序算法或是以递归方式继续使用桶排序进行排序)。- Bucket sort is also called sorting box. Work principle is that the array to a limited number of bucket, each bucket and individual ranking (may use other sorting algorithms
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:597280
    • 提供者:靳以2002
  1. Selection-Sort

    0下载:
  2. 选择排序也是一种简单直观的排序算法。它的工作原理很容易理解:首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置;然后,再从剩余未排序元素中继续寻找最小(大)元素,放到已排序序列的末尾。以此类推,直到所有元素均排序完毕。-Selection sort is a simple and intuitive sort algorithm. Its working principle is easy to understand: first in the unsorted sequence t
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:150450
    • 提供者:靳以2002
  1. DFA--TO--NFA--simpleDFA

    0下载:
  2. 程序实现的是编译原理中的NFA到DFA的转换(使用子集构造法)。以及使用等价划分算法实现的DFA的简化-Realize the principle is to compile the NFA to DFA conversion (using the subset construction). As well as simplify the use of equivalence partitioning algorithm to achieve the DFA
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3313
    • 提供者:张鹏飞
  1. HuffmanCodingAndDecoding

    0下载:
  2. 对任意输入的文字、字母、数字进行编码,显示出0-1串,并显示出编码表;同时可进行解码显示出原文。对要熟悉哈夫曼原理的有作用。-Any input text, letters, numbers encoded to show a 0-1 string, and display the code table at the same time can be decoded to show the original. To be familiar with the Huffman principle.
  3. 所属分类:Data structs

    • 发布日期:2017-06-16
    • 文件大小:25175952
    • 提供者:王侠
  1. kuods

    0下载:
  2. 本文件中包含了很多在通信基本原理中常用的源程序,像各种调制方式-This file contains a lot of common source program in the basic principle of communication, like all kinds of modulation mode
  3. 所属分类:Data structs

    • 发布日期:2017-12-12
    • 文件大小:527657
    • 提供者:CNNMvcz@40721
  1. dsmensionsl_confirm

    0下载:
  2. 第三个例子滤波应用程序,可以了解粒子滤波的工作原理 不错的-A third example filtering applications, can understand the working principle of particle filter is good
  3. 所属分类:Data structs

    • 发布日期:2017-12-15
    • 文件大小:2048
    • 提供者:vfi$68028
  1. theRATOABatplitude

    0下载:
  2. 通信原理课程原理课题:数字幅度调制的抗噪声性能,程序运行于MATLAB环境下-Communication principle course principle: digital amplitude modulation noise resistance, the program runs in the MATLAB environment
  3. 所属分类:Data structs

    • 发布日期:2017-12-16
    • 文件大小:366592
    • 提供者:simioar
  1. 哈弗曼

    0下载:
  2. 哈夫曼算法的简单功能实现,主要用于算法原理理解(Huffman algorithm, simple function implementation)
  3. 所属分类:数据结构

    • 发布日期:2017-12-24
    • 文件大小:3290112
    • 提供者:林悦
  1. 数据结构

    0下载:
  2. 数据结构简单明了的介绍。初探数据结构原理(The data structure is simple and clear. Data structure principle)
  3. 所属分类:数据结构

    • 发布日期:2017-12-23
    • 文件大小:294912
    • 提供者:RuiWenCN
  1. 5521432

    0下载:
  2. t-snake的文章,详细介绍了T-snake的原理和算法()
  3. 所属分类:数据结构

    • 发布日期:2018-01-06
    • 文件大小:1734656
    • 提供者:Hacel
  1. pxciplipationlist_box

    0下载:
  2. 适合 初学者 看的 支持向量机 原理介绍()
  3. 所属分类:数据结构

    • 发布日期:2018-01-06
    • 文件大小:83968
    • 提供者:povtvnt
« 1 2 ... 6 7 8 9 10 1112 »
搜珍网 www.dssz.com