搜索资源列表

  1. 二叉树的各种遍历操作(非)递归

    0下载:
  2. 数据结构的基本应用,二叉树的遍历。适合初学者,比较简单。 -the basic data structure application binary tree traversal. For beginners, relatively simple.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:2.44kb
    • 提供者:阿水
  1. 线索化二叉树遍历算法

    0下载:
  2. 本程序的主要功能在于先序输入一个二叉树,用三种递归,三种非递归进行遍历,并进行中序线索化以及其遍历,后进行中序去线索化,再进行后序线索化以及其遍历,最后后序去线索花进行中序遍历.程序的基本目的是了解二叉树的基本操作.
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-09-20
    • 文件大小:2.74kb
    • 提供者:red_eyed_hare
  1. 2-Tree

    0下载:
  2. 二叉树的基本操作-binary tree as the basic operation
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:925kb
    • 提供者:殷铭
  1. 200561674082801

    0下载:
  2. 我最近的作业,是二叉树的基本操作,新手,各位多多关照。-my recent operations, a binary tree is the basic operation, and newcomers, to take care of you.
  3. 所属分类:其他小程序

    • 发布日期:2024-11-30
    • 文件大小:2kb
    • 提供者:
  1. 平衡二叉树操作的演示

    0下载:
  2. 平衡二叉树实现一个动态查找表,有三种基本功能:查找,插入删除,还有选项功能:合并两棵平衡二叉树,和分裂两棵平衡二叉树.-balanced binary tree to achieve a dynamic lookup table, there are three basic functions : to find, delete, insert, functional options : merging two balanced bin
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:3kb
    • 提供者:罗明会
  1. 二叉树的各种遍历操作(非)递归

    0下载:
  2. 数据结构的基本应用,二叉树的遍历。适合初学者,比较简单。 -the basic data structure application binary tree traversal. For beginners, relatively simple.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:2kb
    • 提供者:阿水
  1. BST

    0下载:
  2. 代码实现了二叉树基本操作:实现二叉树的基本操作(包括前序、中序、后序遍历);从键盘读数,利用前面实现的基本操作,生成一棵二叉查找树;通过遍历二叉树,输出该二叉树的叶节点数;通过遍历二叉树,求二叉树的最大高度;利用队列,按层次输出二叉树各结点。 -Code to achieve the basic operation of the binary tree: binary tree to achieve the basic operat
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:942kb
    • 提供者:李雅芳
  1. erchashudejibencaozuo

    0下载:
  2. 数据结构二叉树的基本运算。建立一棵二叉树,试编程实现二叉树的如下基本操作: (1). 按先序序列构造一棵二叉链表表示的二叉树T; (2). 对这棵二叉树进行遍历:先序、中序、后序以及层次遍历,分别输出结点的遍历序列; -Binary tree data structure of the basic computing. The establishment of a binary tree, binary tree tes
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:26kb
    • 提供者:
  1. cengxubianlierchashu

    0下载:
  2. ,该程序的功能是实现二叉树结点的类型定义和对二叉树的基本操作。该程序包括二叉树结构类型以及每一种操作的具体的函数定义和主函数。 -, The program
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:1kb
    • 提供者:刘慧
  1. 1

    0下载:
  2. 二叉树的基本操作(1)在二叉链表上设计和实现下列二叉树运算的算法 ① 设计递归算法,实现:删除二叉树,求二叉树的高度,求二叉树中叶子结点数,复制二叉树,交换二叉树的左右子树。 ② 设计算法,按自上到下,自左向右的次序,即按层次遍历一棵二叉树。 ③ 设计main函数,测试上述每个运算。 -Binary Tree s basic operations (1) in the binary list on the design
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:1kb
    • 提供者:
  1. bitreeJIE

    0下载:
  2. 二叉树的基本操作和应用,C语言数据结构中的编程实例-the main operation of bitree
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:11kb
    • 提供者:lqing
  1. 二叉树

    0下载:
  2. 二叉树的基本操作,包括先序中序后序的递归和非递归(Two basic operations of the tree, including the first order, the order, the order of recursive and non recursive)
  3. 所属分类:Windows编程

    • 发布日期:2024-11-30
    • 文件大小:3kb
    • 提供者:xuaner
  1. 二叉链表

    0下载:
  2. 一、 实验目的 (一) 掌握二叉树的逻辑结构和二叉链表存储结构; (二) 验证二叉树的二叉存储和遍历及其基本操作的实现; (三) 理解算法与程序的关系,能够将顺序表算法转化为对应程序;(First, the purpose of the experiment (1) master the logical structure of the two tree and the storage structure of the two
  3. 所属分类:汇编语言

    • 发布日期:2024-11-30
    • 文件大小:1kb
    • 提供者:轩卬
  1. 二叉树的基本操作

    0下载:
  2. 二叉树的先序,中序,后序,层序递归和非递归实现,总节点个数和叶子节点个数,二叉树的高度等基本操作(Two binary tree first order, middle order, backward sequence, sequence recursive and non recursive implementation, the total number of nodes and the number of leaf nodes,
  3. 所属分类:数据结构常用算法

  1. 3.1二叉树

    0下载:
  2. [实验目的]? 验证二叉树的链接存储结构及其上的基本操作。? [实验内容及要求]? 1、 定义链接存储的二叉树类。 2、 实验验证如下算法的正确性、各种功能及指标:? 1)创建一棵二叉树,并对其初始化;? 2)先根、中根、后根遍历二叉树;? 3)在二叉树中搜索给定结点的父结点;? 4)搜索二叉树中符合数据域条件的结点;? [测试数据]? 由教师随机指定树结构,测试上述功能(Header file of two fork tree)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:600kb
    • 提供者:weiyt9916
  1. 二叉树.cpp

    0下载:
  2. 二叉树的基本操作,二叉树的中序,先序遍历,后序遍历,层次遍历,二叉树家电个数以及二叉树的复制操作的实现(The basic operation of the binary tree)
  3. 所属分类:其他小程序

    • 发布日期:2024-11-30
    • 文件大小:2kb
    • 提供者:塔力鹏
  1. BST二叉树的基本操作

    0下载:
  2. BST二叉排序树的插入、查询、删除、遍历 (中序遍历 从小到大)(The basic operation of the BST two forked tree.Inserting, querying, deleting, traversing two forked sort trees.)
  3. 所属分类:其他小程序

    • 发布日期:2024-11-30
    • 文件大小:90kb
    • 提供者:续续
  1. 1160300803_樊静_实验二

    0下载:
  2. 森林和树的基本操作 ,森林的存储,森林转化成二叉树,二叉树的先序中序后序非递归遍历,以及区间编码(The basic operations of forests and trees, the storage of forests, the conversion of forests into two forked trees, the preorder and the post order of the two forked tree
  3. 所属分类:其他小程序

    • 发布日期:2024-11-30
    • 文件大小:228kb
    • 提供者:hit樊静
  1. 二叉树基本操作的程序实现

    0下载:
  2. 数据结构二叉树的基本操作,比较基础,初学者专用吧。。。(The basic operation of a binary tree)
  3. 所属分类:其他小程序

    • 发布日期:2024-11-30
    • 文件大小:13kb
    • 提供者:醉鬼笑
  1. Tree

    0下载:
  2. 本代码从基础的建立树开始,介绍了一系列二叉树的基本操作,方便初步学习数据结构的童鞋学习(This code starts from the foundation tree, introduces the basic operation of a series of two forked trees, which is convenient to learn the data structure of children's shoes.)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-30
    • 文件大小:67kb
    • 提供者:月下一颗星
« 12 3 4 5 6 7 8 9 10 ... 13 »

源码中国 www.ymcn.org