搜索结果
找到约 3 项符合
Postorder 的查询结果
按分类筛选
Applet Very good Java Applet used to animate Inserting, Deleting and Searching (Preorder & Postorder algori
Very good Java Applet used to animate Inserting, Deleting and Searching (Preorder & Postorder algorithm) nodes in Binary Trees. This is a part of mine students project.
You can use and redistribute the source code absolutelly free!
数据结构 TwoEmbranchmentTree:As ancestor has its children , a tree has its leaves. we could check its leaves
TwoEmbranchmentTree:As ancestor has its children , a tree has its leaves.
we could check its leaves in terms of algorithm as preorder , midorder or postorder.
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...