搜索结果

找到约 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!
https://www.eeworm.com/dl/634/425924.html
下载: 188
查看: 1039

数据结构 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.
https://www.eeworm.com/dl/654/171506.html
下载: 132
查看: 1025

源码 二叉树子系统

#include<stdio.h> #define TREEMAX 100 typedef struct  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 ...
https://www.eeworm.com/dl/522520.html
查看: 93