二叉树所有相关遍历的算法

#ifndef BITREE_H_INCLUDED #define BITREE_H_INCLUDED typedef char DataType; typedef struct Node {     DataType data;     struct Node *lch;     struct Node *rch; }Node,*Bitree; void CreateTree(Bitree &b
相关文章
相关标签/搜索