CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数据结构 二叉树 实现

搜索资源列表

  1. Huffman

    0下载:
  2. 本目录下的源代码均属示例、教学性质。作者不对这些代码的功能和性能作任何担保或承诺。 -------- 功能说明 -------- 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:40130
    • 提供者:tomato
  1. tree

    0下载:
  2. 数据结构C实现对二叉树的操作,有遍历二叉树的算法,统计叶子数,构造哈夫曼树。-C data structures to achieve the operation of binary tree, a binary tree traversal algorithms, statistical leaves the number of Huffman tree structure.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:3638
    • 提供者:韩杰
  1. erchashu

    0下载:
  2. 用c语言实现的关于二叉树的各种操作,适合初学数据结构的人-C language used on the binary tree to achieve a variety of operations, data structures suitable for beginners who
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-09
    • 文件大小:3084
    • 提供者:郭伟杰
  1. binanytree-postorder

    0下载:
  2. 实现数据结构中的二叉树的后续遍历,能够从你输入的二叉树中找到路径-Data structure of the follow-up traversal of the tree, you have entered from the binary tree to find the path
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-25
    • 文件大小:73356
    • 提供者:william
  1. binarytree

    0下载:
  2. 数据结构中的排序算法,实现的是二叉树排序算法-Data structure of sorting algorithm, the realization of the binary tree sorting algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3000
    • 提供者:winnie
  1. BT

    0下载:
  2. C++编写的数据结构平衡二叉树的生成与实现-C++ Prepared balanced binary tree data structure and implementation of the generation
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:104310
    • 提供者:张欣
  1. erchashuquanbugongneng

    0下载:
  2. 二叉树的全部功能实现模块,对学数据结构的大学生来说说个好东西,已经通过编译实现!-Binary tree to achieve the full functionality of modules, data structures for school students for the good things that have been adopted to achieve the compiler!
  3. 所属分类:Console

    • 发布日期:2017-04-06
    • 文件大小:5155
    • 提供者:wxg
  1. DataStructureTest

    0下载:
  2. 数据结构的一些基本的相关的试验,如二叉树的遍历,打印,如排序算法,检索算法,动态结构的静态实现实验-Data structures related to some basic tests, such as binary tree traversal, print, such as sorting algorithms, search algorithms, the dynamic structure of the realization of the experimental static
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:209516
    • 提供者:林小峰
  1. Btree

    0下载:
  2. 实现二叉树基本操作,数据结构中的基本程序-Realize the basic operation of binary tree, data structure, the basic procedures
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1035
    • 提供者:songjinghua
  1. adfwfer

    0下载:
  2. 数据结构的二叉树的叶子结点的求法 范围较好 功能良好 采用链试结构得以实现-Binary tree data structure of the leaf nodes for better well-functioning law-chain test structure used to realize
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1197
    • 提供者:张清
  1. Binarytrer

    0下载:
  2. 数据结构试验中二叉树的C++实现,经过运行成功-Binary tree data structure test the C++ implementation, after running successfully
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:730
    • 提供者:luo
  1. PrintBinaryTree

    0下载:
  2. 数据结构课程设计,打印二叉树的算法的实现-Data structure course design, print binary tree implementation of the algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1235
    • 提供者:xuezhanfei
  1. datastruct-c

    0下载:
  2. 用C语言实现的数据结构,包括链表、图、二叉树、表等。-Implementation using C language data structures, including linked lists, maps, binary tree, and so on.
  3. 所属分类:Data structs

    • 发布日期:2017-04-28
    • 文件大小:16300
    • 提供者:任琳
  1. Structure

    0下载:
  2. 数据结构是计算机学科的一门核心课程。数据结构课程的 任务是讨论现实世界中数据的各种逻辑结构、在计算机中的存 储结构以及实现各种操作的算法等问题。掌握如何组织数据、 如何存储数据和如何处理数据的基本方法,从而更好地进行软 件开发和应用。 典型数据结构包括表、堆栈、队列、数组、串、树、二叉 树、图、递归程序设计、排序和查找方法,介绍的典型存储结 构包括顺序存储结构、链式存储结构以及这两种典型存储结构 的结合。本速查器采用C语言作为算法描述语言,所有算法和 设计
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:157446
    • 提供者:袁和平
  1. Newtree

    0下载:
  2. 以二叉链表为存储结构,建立二叉树、先序遍历二叉树、求二叉树节点总数、叶子数、树高度的算法。队列抽象数据类型的顺序、链式表示与实现,并可对上面建立的二叉树按层次遍历。-List in Binary for the storage structure, the establishment of binary tree, the first tree traversal, and the total number of tree nodes, the number of leaves, tree he
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:24798
    • 提供者:韩非
  1. RBTreeCode

    0下载:
  2. 红黑树和二叉查找树数据结构的实现以及二者的性能比较的C语言实现代码-Red and black binary search tree and the tree data structure, as well as the achievement of the performance comparison between the C language code
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-27
    • 文件大小:235091
    • 提供者:张辉
  1. bag

    0下载:
  2. 这是一个“背包”问题的数据结构的C语言实现。我个人觉得是考查对链表和二叉树的知识。去年学的是这个,觉得很有意思。自己写了几个,也收集了别人做的几个课题。具体思路里面有。-This a problem "bag" in data_structure. I learned this course last year and I think it s very interesting.
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:12250
    • 提供者:流动的阳光
  1. binarytreesort

    0下载:
  2. 数据结构排序部分的二叉树排序,可以实现排序功能,同时可以删除某个节点-bitree sort in the datastructure can sort the data ,delete the note in bitree
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:40337
    • 提供者:liangfangfang
  1. DataStructure

    0下载:
  2. 用C语言编写实现数据结构方面的例子,如栈,队列,二叉树等!-Using C language data structures examples, such as stacks, queues, binary tree, etc.!
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1468474
    • 提供者:周峤
  1. CSTreeExample

    0下载:
  2. 所有关于二叉树的算法实现,适合学习算法和数据结构的人使用-All of the binary tree algorithm for learning algorithms and data structures used
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:2377
    • 提供者:路刚
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 23 »
搜珍网 www.dssz.com