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

搜索资源列表

  1. huffman

    0下载:
  2. 哈夫曼树的建立和编码 输入组成二叉树的各个叶子值和权值,建立最优二叉树,并输出最优二叉树的数组存储形式。-Huffman coding tree for the establishment and composition of binary input values of all the leaves and weight, the establishment of the optimal binary tree, and store the output array of the best
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1063
    • 提供者:李城
  1. ewqq

    0下载:
  2. 二叉排序树的存储结构包括删除查找和插入等功能-ABC
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:28917
    • 提供者:cai
  1. tree

    1下载:
  2. 树的建立与基本操作,有树的创建,输入数据为广义表方式,采用孩子兄弟法进行存储-tree operation, create, output, and so on.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2222
    • 提供者:joy
  1. erchashubianli

    0下载:
  2. 以二叉链表为存储结构,实现二叉树的创建、前序、中序和后序遍历(非递归遍历)-The list is stored in binary structure, to achieve the creation of a binary tree, the first order, the order and post order traversal (non-recursive traversal)
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:682
    • 提供者:lili
  1. Bitree

    0下载:
  2. 建立一个用二叉链表存储的二叉排序树,并按中序遍历输出其值-The establishment of a binary list stored with binary sort tree, according to its value in the output order traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:3141
    • 提供者:tang
  1. BinarySearchTree

    0下载:
  2. 二叉搜索树,二叉搜索树的查找过程和次优二叉树类似,通常采取二叉链表作为二叉搜索树的存储结构。中序遍历二叉搜索树可得到一个关键字的有序序列,一个无序序列可以通过构造一棵二叉搜索树变成一个有序序列,构造树的过程即为对无序序列进行排序的过程。每次插入的新的结点都是二叉搜索树上新的叶子结点,在进行插入操作时,不必移动其它结点,只需改动某个结点的指针,由空变为非空即可。搜索,插入,删除的复杂度等于树高。-Binary search tree, binary search tree to find a si
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1570
    • 提供者:qinxiaoyu
  1. huffman

    0下载:
  2. 哈弗曼树编码,给定电文进行哈夫曼编码,给定编码进行哈夫曼译码。要求电文存储在文件1中,编码后的结果存储在文件2中,给定编码存储在文件3中,译码后的结果存储在文件4中。-Ha Fuman tree coding, given the message to Huffman coding, Huffman coding given decoding. Requested message is stored in the file 1, the encoded result is stored in a
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1755
    • 提供者:吴芳
  1. erchashu

    0下载:
  2. 建立一颗用二叉树链表方式存储的二叉树,斌对其进行表里(先序中序后序),打印输出表里结果。-Create a list using a binary tree stored in the binary tree, its bin table (after the first sequence in the sequence order), print out the result table.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:39411
    • 提供者:pantao
  1. chazhao

    0下载:
  2. 1:折半查找算法的思想及实现。 2:掌握二叉排序树,AVL树的查找,插入,删除,建立算法的思想及实现 3:存储结构的思想,能选择合适散列函数,实现不同冲突处理方法的散列表的查找,建立 -1: The binary search algorithm and the realization of the idea. 2: The master binary sort tree, AVL tree search, insert, delete, create the idea of the
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:85113
    • 提供者:王博
  1. yrh1

    0下载:
  2. 哈夫曼树的存储和哈夫曼编码的存储 在哈夫曼树HT[1..n] 搜索最大权值和最小权值并用s1,s2 返回它们的下标-Huffman tree storage and Huffman coding is stored in the Huffman tree HT [1 .. n] the right to search the maximum and minimum weights and use s1, s2 return their subscr ipt
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4470
    • 提供者:严若林
  1. hfms

    0下载:
  2. 哈夫曼算法 哈夫曼树的存储和哈夫曼编码的存储 哈夫曼树的结点数-Huffman Huffman algorithm Huffman tree storage and storage nodes Huffman tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:26112
    • 提供者:严若林
  1. c

    0下载:
  2. 用顺序和二叉链表作存储结构 ,完成学生成绩管理 1) 以回车( \n )为输入结束标志,输入数列L,生成一棵二叉排 序树T; 2) 对二叉排序树T作中序遍历,输出结果; 3) 输入元素x,查找二叉排序树T,若存在含x的结点,则删除该结点,并作中序遍历(执行操作2);否则输出信息“无x”; -susau
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:9617
    • 提供者:章红建
  1. afasfsdggasd

    1下载:
  2. 用顺序和二叉链表作存储结构 ,完成学生成绩管理 1) 以回车( \n )为输入结束标志,输入数列L,生成一棵二叉排 序树T; 2) 对二叉排序树T作中序遍历,输出结果; 3) 输入元素x,查找二叉排序树T,若存在含x的结点,则删除该结点,并作中序遍历(执行操作2);否则输出信息“无x”; -susau
  3. 所属分类:Data structs

    • 发布日期:2014-12-09
    • 文件大小:23552
    • 提供者:章红建
  1. hufumanshu

    0下载:
  2. 利用Huffman进行通信可以提高信道利用率、缩短传输时间。要求为使用Huffman编码的通信系统实现信息收发编写程序,以顺序存储结构方式存储二叉树,实现Huffman编译码。-Huffman used to communicate channel utilization can be improved to shorten the transmission time. Requirements for the use of Huffman coding of communications sy
  3. 所属分类:CSharp

    • 发布日期:2017-04-05
    • 文件大小:1826
    • 提供者:小刀
  1. filesystembegin

    1下载:
  2. 1. 设计和实现一个简单的文件系统,要求包括目录、普通文件和文件的存储 2. 文件系统的目录结构采用类似Linux的树状结构; 3. 要求模拟的操作包括: a) 目录的添加、删除、重命名; b) 目录的显示(列表) c) 文件的添加、删除、重命名 d) 文件和目录的拷贝 4. 用户进入时显示可用命令列表;用户输入help时显示所有命令的帮助文档; 输入某个命令+?时显示该条命令的使用说明 5. 用户输入exit时退出该系统 6. 实验实现基于windows平台
  3. 所属分类:File Operate

    • 发布日期:2017-04-24
    • 文件大小:311164
    • 提供者:皇絮淡
  1. BinaryTree

    0下载:
  2. 创建二叉树类。二叉树的存储结构使用链表。 提供操作:前序遍历、中序遍历、后序遍历、层次遍历、计算二叉树结点数目、计算二叉树高度。 -Create a binary tree class. Binary tree using linked list storage structure. Provides operations: pre-order traversal, inorder traversal, postorder traversal, traverse levels to ca
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:6170
    • 提供者:valentine
  1. 5070309487_2

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

    • 发布日期:2017-04-07
    • 文件大小:16845
    • 提供者:lianwenzhao
  1. 05

    0下载:
  2. 关于二叉树的顺序存储及其运算的程序,能较好的理解二叉树的概念,方便将来编程时使用。-On the order of storage and computing binary tree program, to better understand the concept of binary tree, easy to use in future programming.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:160419
    • 提供者:Luo
  1. 06

    0下载:
  2. 关于二叉树的链式存储及其运算(二叉排序树)的程序,将二叉树与链式存储相结合,方便将来编程使用。-On the binary tree and chain store operations (binary sort tree) program that will combine binary tree with the chain store, easy to use in future programming.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:173775
    • 提供者:Luo
  1. CreateBinTree

    0下载:
  2. 数据结构二叉树的用建立,用二叉链表作为二叉树的存储结构,完成了二叉树的中序遍历后序遍历、前序遍历以及叶子节点、二叉树节点总数的递归算法实现,可运行!-Binary tree data structure with the establishment of the list with a binary storage structure as a binary tree, complete binary tree in postorder traversal order traversal, pr
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:744
    • 提供者:liqiang
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 ... 26 »
搜珍网 www.dssz.com