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

搜索资源列表

  1. fina_ver

    0下载:
  2. 用迷宫算法实现聚点的统计,这里只是简单扫描每个像素的四个方向,当然,可以很容易修改源码,实现八个方向的扫描,至于聚点嘛,就是被数码0包围的数码1组成的块,这种算法在元件识别方面可以应用。-maze algorithm used accumulation of statistics, here simply scanning each pixel of the four directions, of course, you can easily modify the source codes to
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2973
    • 提供者:光法
  1. 单源最短路径

    0下载:
  2. 数据结构的最短路径算法-Source codes about how to realize the short path generation for single source graph.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:19207
    • 提供者:林夕
  1. codes

    0下载:
  2. 数据结构相关代码,源码-数据结构算法解析(高一凡 )
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:160089
    • 提供者:PowerChen
  1. bptree

    0下载:
  2. 清华大学数据结构课上实现的B+树,设计一个4阶B+树,包括: (1) 叶子的每个记录应该包括4字节(long)关键码值和60字节的数据字段(存储文件名等,可以自定),设每个叶子可以存储5条记录,而内部节点应该是关键码值/指针对。此外,每个节点还应该有指向同层下一个节点的指针、本节点存储的关键码数等; (2) 此4阶B+树应该支持插入、删除以及根据给定关键码值进行精确检索与关键码范围检索; (3) 显示(打印)此4阶B+树的生长(含删除节点)过程实例;-Tsinghua University cl
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3777
    • 提供者:qqiang
  1. avl_tree

    0下载:
  2. 1.本程序由本人采用vc++ 6.0编写,包括了排序平衡二叉树的整套算法(包括插入、删除、查找以及其测试算法)。 2.运行myavl_vc.exe输入树的初始结点个数,确定后本程序将在内存中生成一棵相应结点数的二叉树,在此基础上你可以进行各种操作(插入、删除、查找以及测试其平衡性、排序性等) 3.每一个结点信息包括\"商品编码\"、\"商品名称\",且以\"商品编码\"作为关键字 4.初始生成的树的结点的商品编码为从1按顺序递增,商品名称为\"生成的商品\"加上商品编码 5.程序中的随
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:17097
    • 提供者:avltree
  1. eight-queen

    0下载:
  2. 通过堆栈结构解决著名的八皇后问题,同时也是数据结构中的典型例题-Codes for the well-known eight-queen problem
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:1452
    • 提供者:wangfuwei
  1. gray

    0下载:
  2. Gray码是一个长度为2n的序列。序列中无相同元素,每个元素都是长度为n位的串,相邻元素恰好只有1位不同。用分治策略设计并实现一个算法对任意的n构造响应的Gray码。-Gray code is a sequence of length 2n. No similar sequence elements, each element is n-bit string length, the adjacent element is only a difference exactly. With sub-r
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:681
    • 提供者:huzhaowei
  1. program

    0下载:
  2. 一个算法问题包括,一些数据结构的算法,全部是已经编译通过的源码,且是我自己写的!- An algorithm question includes, some constructions of data algorithms, completely were already translated through the source codes, was precisely I writes!
  3. 所属分类:Data structs

    • 发布日期:2017-12-10
    • 文件大小:5493
    • 提供者:王林广
  1. viterbi3

    0下载:
  2. 对码率为1/n的递归卷积码(系统码!)的最大似然译码,采用相关度量,截断长度为1024,最大状态数为1024 -On the bit rate for the 1/n recursive convolutional codes (system code!) Of the maximum-likelihood decoding, using the relevant measure to cut off a length of 1024, the largest number of state
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:8652
    • 提供者:戈津生
  1. hfmcpp

    0下载:
  2. 赫夫曼编码本程序实现了使用赫夫曼编码压缩数据;输入一串字符串sourceCode——为方便理解,暂时要求字符串只包含大写字母和空格,如果你愿意, 很容易就可以推广到所有的字符——计算出字符串中各个字母的权重,然后对其进行赫夫曼编码,输出赫夫曼树。 将赫夫曼树的叶子结点存储到有序二叉树中,输出原字符串经压缩后得到的用 0 和 1 表示的新字符串destCode; 然后利用赫夫曼树将字符串destCode进行译码,得到目标字符串objCode,比较objCode和sourceCod
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:3737
    • 提供者:xhh
  1. Miller-Rabin-c

    0下载:
  2. 求质数的算法之Miller-Rabin费马小定理-Prime number for the Miller-Rabin algorithm of Fermat' s Little Theorem
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:833
    • 提供者:li shu
  1. ssjg

    0下载:
  2. 数据结构中的huffman链表存储,huffman四元组法,纠错码的实现-Huffman data structure in memory list, huffman quaternion group law, the achievement of error-correcting codes
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:3174
    • 提供者:初蕾
  1. huffmancode

    0下载:
  2. huffman编码,能够对输入的序列按权值进行最优二叉树排序,按最优二叉树排序进行简单编码。-huffman coding, be able to input the right values according to the optimal sequence of binary sort order by a simple optimal binary codes.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:788
    • 提供者:花脸的猫
  1. shujujieou

    0下载:
  2. 利用赫夫曼树来设计二进制的前缀编码,实现文件的压缩和恢复功能。-Huffman tree to use to design binary prefix codes, the implementation file compression and recovery.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:251092
    • 提供者:tmacq3
  1. cpp_code

    0下载:
  2. codes for c programming
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:72959
    • 提供者:neo
  1. linked_lists

    0下载:
  2. linked lists source codes
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:6616
    • 提供者:akshay
  1. Huffman-code-decode

    0下载:
  2. test1.txt中为要读入的英文文章,code.txt为生成的huffman编码,decoded.txt中为根据code.txt中内容解码后的结果。-test1.txt is used to store the article in English to be read, code.txt contains generated the huffman codes, decoded.txt for the contents according to code.txt decoded result
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:19494
    • 提供者:Felix
  1. DoubleHashing

    0下载:
  2. this codes is about double hashing
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:893
    • 提供者:shima
  1. qUEUE1

    0下载:
  2. this codes is about q-this codes is about queue
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:963
    • 提供者:shima
  1. Codes

    0下载:
  2. codes for Interpolation and fitting lines
  3. 所属分类:Data structs

    • 发布日期:2017-11-23
    • 文件大小:11931
    • 提供者:kad
« 12 3 4 5 »
搜珍网 www.dssz.com