搜索资源列表
A09
- 二维树,实现一个三维的树林空间,优点可以减小程序的体积。能实现三维的效果,它把二维树的正面始终对着视点,从而可见的总是一棵树,而不会出现失真-two-dimensional tree, to achieve a three-dimensional space woods advantage of the procedure can reduce the volume. To achieve the 3-D effect, two-dimensional tree always facing th
tree
- 多元树的层次遍历、先根遍历、后根遍历 问题的描述: 函数填空:层次遍历多元树(在文件tree.cpp中3个空)、先根遍历、后根遍历的递归函数(在文件tree.h中2个空); 多元树的输入:在主程序中调用多元树的函数(定位根、找大儿子、找下一个兄弟等),输入某棵多元树。 -Multi-level tree traversal, the first traversal the root, root traversal issues Descr iption: function to
baseexp3
- 本实验由以下环节组成: 1) 存储结构 以二叉链表或三叉链表作为二叉树的存储结构; 2) 二叉树的创建(链式存储) 以某一种遍历的次序录入二叉树的元素,写出相应的二/三叉链表的创建算法,并上机实现该算法; -In this study, composed of the following aspects: 1) The storage structure to two or three-pronged fork linked list is stored as a binar
AIWordSplit
- 直接运行compile.bat和run.bat即可 使用了3种分词方法: 1.正向最大匹配(ForwardMatch.java) 2.逆向最大匹配(ForwardMatch.java) 3.最大频率匹配(FrequencyMatch.java)(默认) 取频率最高的词,然后两端递归,构建二杈树存储句子中的词语,显示的时候使用中序遍历二杈树 由于极有可能单个字的使用频率比整个词还高,筛选的时候进行了处理 若单个字不处于当前句子开头,先忽略,
23tree
- 2-3 树插入,查找,删除,排序,从文件txt读入插入,查找,删除,排序等指令-two three tree, including insert, search,order,delete, you can read command for txt file
ff
- 对偶复树小波以及去噪, 包含1维二维三维的程序实现-Dual tree complex wavelet and the noise, including the one-dimensional two-dimensional three-dimensional program -The dual tree complex wavelet and denoising, including 1-dimensional 2D and 3D programs to achieve-Dual tree c
2-3-tree
- n computer science, a 2-3 tree is a type of data structure, a tree where every node with children (internal node) has either two children (2-node) and one data element or three children (3-nodes) and two data elements. Nodes on the outside of the tre
andian
- 假设以如下说明的三元组 (F、C、L/R) 序列输入一棵二叉树的诸边(其中 F 表示双亲结点的标识,C 表示孩子结点标识,L/R 表示 C 为 F 的左孩子或右孩子),且在输入的三元组序列中,C 是按层次顺序出现的。设结点的标识是字符类型。F=‘^’时 C 为根结点标识,若 C 亦为‘^’,则表示输入结束。试编写算法,由输入的三元组序列建立二叉树的二叉链表,并以中序序列输出。-In the following descr iption of the three tuple hypothesis
Two-forks-tree-problem
- 二叉树问题 1、 按根、左子树和右子树三部分进行遍历 遍历二叉树的顺序存在下面6种可能: TLR(根左右), TRL(根右左) LTR(左根右), RTL(右根左) LRT(左右根), RLT(右左根) 其中,TRL、RTL和RLT三种顺序在左右子树之间均是先右子树后左子树,这与人们先左后右 的习惯不同,因此,往往不予采用。余下的三种顺序TLR、LTR和LRT根据根访问的位置不同分别 被称为先序遍历、中序遍历和
2-3-tree
- 2—3树是这样一种树: A.每个非叶子结点都有2个或3个儿子; B.每条众树根到树叶的路径长度相等; C.只有一个根结点的树也是2—3树。 本题目要求从键盘输入以整数序列,建立一棵2-3树。所以我的建树构思为以2-3树的插入操作来进行建树。-2-3 tree is such a tree: A. Each non-leaf node has two or three sons B. Each congregation tree roots to leaves is equal
two-cha--pai-xu-tree-chunvzuo
- 实现排序二叉树三种遍历的代码。刚开始学习C程序,故有些水,这是我关于树类应用的处女作,望大家勿喷-Sorted binary tree three traversal code. Just started learning C program, some water, this is my debut on tree type applications, we hope not to spray Thank ...
The-complex-3D-dual-tree-DWT
- 复杂的3 d双树离散小波变换(DWT)同样也引起了小波的两倍作为真正的3 d双树离散小波变换(DWT)。这两个小波在每一个方向,可以解释为真实的和虚构的部分一个复数的3 d小波。复杂的3 d双树被实现为八严格采样可分3 d DWTs操作在并行。然而,不同的过滤器集用于每个三个维度。 -3 d complex- Doubletree discrete wavelet transform (DWT) also caused the wavelet twice as a real 3 d Doub
ExpandableList3
- 实现可扩展的listview,可以实现两级至三级的树状列表的显示-Scalable listview, can achieve two to three tree list display
TreeTest
- android 实现树形结构的列表,可以添加二级、三级或更多级的节点-android tree structure to achieve a list, you can add two, three or more levels of nodes
ExpandableListViewDemo
- 超使用简单的二级树形下拉及三级树形下拉,初学者学习的好代码-Super simple two and three tree tree drop down , beginners learn the code
Binary-Tree
- 关于二叉树先、中、后三种遍历的算法,以及对两棵二叉树进行判等的算法用c语言加以实现-About binary tree first, middle and last three traversal algorithms, and sentenced to two trees and other binary tree algorithm to be implemented in c language
Cpp1
- 以(F,C,L/R)三元组序列表示一颗二叉树(其中F表示该结点的父结点,C表示结点的值,L/R表示与父结点的关系),并由该序列创建链表结构的二叉树T-In (F, C, L/R) three tuple sequence represents a two fork tree (where F represents the parent node of the node, C represents the value of the node, L/R represents the relation
tree
- C语言二叉树三种遍历算法及其广义表表示 VS2012编写 基于先序遍历的构造算法:输入是二叉树的先序序列,但必须在其中加入虚结点以示空指针的位置。假设虚结点输入时用’.’字符表示。 分别利用先序遍历、中序遍历、后序遍历所建二叉树-Three kinds of C language binary tree traversal algorithm and generalized table said visual programming based on first order traversal
BiTree
- 二叉树的创建以及三种遍历算法(使用递归)-Two fork tree and the creation of the three traversal algorithm (using recursi
二叉链表
- 一、 实验目的 (一) 掌握二叉树的逻辑结构和二叉链表存储结构; (二) 验证二叉树的二叉存储和遍历及其基本操作的实现; (三) 理解算法与程序的关系,能够将顺序表算法转化为对应程序;(First, the purpose of the experiment (1) master the logical structure of the two tree and the storage structure of the two linked list; (two) verify the