CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 树 存储

搜索资源列表

  1. parser

    0下载:
  2. 采用递归下降分析法实现C0语言的语法分析器,其中中间表示采用抽象语法树的形式。 程序的输入:词法分析阶段的输出文件 程序的输出:存储了抽象语法树相关信息的XML格式的文件 -Decline in the use of recursive analysis method to achieve C0 language parser, which indicated that the use of intermediate abstract syntax tree form. Proced
  3. 所属分类:Compiler program

    • 发布日期:2017-03-25
    • 文件大小:3522
    • 提供者:
  1. txt

    0下载:
  2. 用二叉链表做存储结构,输入键值序列,建立一棵二叉排序树并在二叉排序树上实现查找算法。-To do with binary storage structure list, enter the key sequence, set up a binary sort tree and binary search algorithm to sort the tree implementation.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3505
    • 提供者:wangya
  1. BinarySearchTree

    0下载:
  2. 从键盘上输 入一串正整数, 最后输入-1作为输入结束的标志。如输入的序列为:2,5,7,23,48,96,……,-1。请以这些正整数的值作为二叉排序树中的结点的数据场之值,建立一棵二叉排序树。注意:请采用动态存储方法保存这棵二叉排序树,事先并未知道该二叉排序树中的结点的个数。-Input from the keyboard on a string of positive integers, the last input-1 as an input symbol of the end. Such
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:237371
    • 提供者:syuanying
  1. huffmantree

    0下载:
  2. 二叉树的用法,深入理解了树和二叉树在计算机中的存储和读取方式,-Binary tree is used, in-depth understanding of the tree and binary tree in computer memory and reading method
  3. 所属分类:Special Effects

    • 发布日期:2017-04-09
    • 文件大小:115541
    • 提供者:王超
  1. shuju6

    0下载:
  2. 熟悉二叉树的各种存储结构的特点及适用范围;掌握建立二叉树的存储结构的方法;熟练掌握二叉树的前序、中序、后序遍历的递归及非递归算法;灵活运用递归的遍历算法实现二叉树的其它各种运算-Familiar with the binary tree structure of a variety of storage features and the scope of application acquire storage to establish the structure of binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:5425
    • 提供者:bartok
  1. treesearch

    0下载:
  2. 本例将演示一种用树数据结构存储记录集合时的动态查找方法。-This example will demonstrate a tree data structure used record store to find a dynamic collection methods.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:1159
    • 提供者:gaoyue
  1. 090619

    0下载:
  2. 理解二叉树特别是完全二叉树的性质,掌握二叉树的存储结构(二叉链表);熟练掌握二叉树的常用操作算法(初始化、插入结点、删除结点、遍历等);初步掌握二叉树的应用。-Binary tree in particular, to understand fully the nature of binary tree, binary tree master storage structure (List Binary) proficiency in commonly used binary tree alg
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2643
    • 提供者:瑞稀
  1. shujujiegou

    1下载:
  2. a.HUFFMAN树及HUFFMAN编码 任务:由用户输入n个结点权值,建立HUFFMAN树并输出HUFFMAN编码。 b.二叉树建立及相关算法实现 任务:按照广义表表达法建立二叉树,并实现二叉树的层次、先序、中序与后序遍历,以及输出树中叶子结点的结点值及叶子结点的个数。( 用递归或非递归的方法都可以) 要求能够输入树的各个结点,并能够输出用不同方法遍历的遍历序列;分别建立创建二叉树存储结构的的输入函数、输出层序遍历序列的函数、输出先序遍历序列的函数、输出后序遍历序列的函
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:45546
    • 提供者:李珊珊
  1. sjjgsy

    0下载:
  2. 数据设计课程实验,二叉树存储设计源码,c语言编写。-Data design course experiments, binary storage design source, c language.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:244842
    • 提供者:汉杰
  1. gouzaoshuyi

    0下载:
  2. 利用数组结构创建一棵词汇树,里面存储了大量图片的信息,通过搜索树的思想来检索图片-Create a tree structure using arrays vocabulary, large tree search tree by the letter pictures of thought to retrieve images
  3. 所属分类:Search Engine

    • 发布日期:2017-03-31
    • 文件大小:554
    • 提供者:吕寿鹏
  1. tree

    0下载:
  2. 树形结构的逻辑和存储特点。 二叉树的遍历递归算法。 -tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1026
    • 提供者:林林
  1. haffman

    0下载:
  2. 一个哈夫曼编码和译码程序 1、掌握树、森林和二叉树的概念和它们的特性以及它们之间是怎样相互转换的,理解二叉树的三种遍历:先序遍历、中序遍历和后序遍历,和树的两种遍历:先序遍历和后序遍历。 2、理解二叉树的基本运算算法实现以及它的非递归运算算法和层次遍历算法,了解二叉树的线索化及其它的应用。 3、掌握树和二叉树的几种存储结构以及它的构造,学会使用二叉链表实现二叉树的存储验证和设计相关算法。 -A Huffman encoding and decoding procedures fo
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:161833
    • 提供者:jingjing
  1. 1

    0下载:
  2. 论述了医学图像挖掘在计算机辅助诊断中的作用,提出了采用灰度级作为 CT 图像特征的思想、灰度级的提取和存储方法,介绍 了采用决策树分类算法和基于密度的聚类算法对胸部和头部 CT 图像进行分类和聚类的结果及其分析,给出了分析的结论和进一步的研究方向。-Image mining Computer-aided diagnoses Luminance grade Classification Clustering
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-17
    • 文件大小:156249
    • 提供者:Erin
  1. BinarySearchTree

    0下载:
  2. 设S=(x1,x2,…,xn)是有序集,且x1<x2<…<xn ,表示有序集S的二叉搜索树, 利用二叉树的结点存储有序集中的元素。且已知其存取概率分布为(a1,a2,…,an),求在所有表示有序集的二叉树中找出一棵具有最小平均路长的二叉搜索树问题。-Set S = (x1, x2, ..., xn) is an ordered set, and x1 <x2<…<xn ,表示有序集S的二叉搜索树, 利用二叉树的结点存储有序集中的元素。且已知其存取概率分布为(a
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:781
    • 提供者:jj
  1. HuffmanCoding

    0下载:
  2. 用哈夫曼编码实现文件压缩。压缩模块是通过构造哈夫曼树,以文件中字符出现的次数作为权值,得到哈夫曼编码对文件进行压缩。首先扫描文件统计字符出现次数,存入链表中。再将链表中的weight依次赋予权值,然后创建对应的哈夫曼树。最后将生成的哈夫曼树的长度写入文件,再将生成的哈夫曼树写入压缩文件。 解压缩模块是要将压缩文件还原为原文件。先读取一个4字节的哈夫曼树长度,根据读取的长度分配对应大小的哈夫曼树存储空间,然后读取哈夫曼树。-File compression with Huffman Codin
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:154542
    • 提供者:秋月白
  1. BTree

    0下载:
  2. 定义二叉树两个结点的最小距离为这两个结点的最近公共祖先分别到这两个结点的路径长度之和。请设计一种方法,找出给定二叉树中任意两个结点的最小距离,可以考虑以图形显示之。程序实现二叉树的层次遍历,要求每层之间的数据用一个空格分开。二叉树采用二叉链表方式进行存储-Defined binary minimum distance of two nodes for these two nodes were the most recent common ancestor of these two nodes a
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-08
    • 文件大小:1608502
    • 提供者:范吉伟
  1. a-binary-tree-search-algorithm

    0下载:
  2. 在对二叉树存储结构进行分析的基础上,介绍二叉树遍历算法的一种应用,即基于求解二叉树深度算法设计实 现的搜索二叉树中最长路径的算法。这里详细介绍了搜索二叉树中最长路径问题的分析解决思路,在对可能的预期结果进 行分析的基础上,给出了算法的设计方案,同时给出了具体的C语言算法描述。-By analyzing the storage structure of binary tree,a kind of application of binary tree traversal algorithm,
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-23
    • 文件大小:262323
    • 提供者:陈晓娟
  1. 37116txt

    0下载:
  2. 任务:   要求能够输入树的各个结点,并能够输出用不同方法遍历的遍历序列;分别建立建立二叉树存储结构的的输入函数、输出层序遍历序列的函数、输出先序遍历序列的函数; -Whereas it is essential, if man is not to be compelled to have recourse, as a last resort, to rebellion against tyranny and oppression, that human rights should b
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2901113
    • 提供者:黄俊
  1. Using-binary-tree

    0下载:
  2. 数据结构课程设计 利用二叉树存储表达式,并求值,返回-Curriculum design using the binary tree data structure stored in the expression and evaluation, return
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:12941
    • 提供者:liu
  1. binarytree

    0下载:
  2. 用二叉链表作为二叉树存储表示编写递归算法。设计思路及调试结果在上机报告内。程序文件在附件中,需包含头文件。-List as a binary tree with binary memory, said write recursive algorithms. Design ideas and results on the machine commissioning report. Program files in the attachment, the need to include the he
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:623372
    • 提供者:ChenSiyu
« 1 23 4 5 6 7 8 9 10 ... 24 »
搜珍网 www.dssz.com