二叉树递归简单操作

#include<iostream> using namespace std; typedef char datatype; typedef struct node{     datatype data;     struct node*lchild,*rchild;//左右节点 } bintnode; typedef bintnode *bintree; bintree root;//指向二叉树
相关文章
相关标签/搜索