二叉树之线索二叉树基本操做(C++实现)

#include<iostream> using namespace std; typedef char TElemType; //TElemType 至关于 char typedef struct BiThrNode { TElemType data; struct BiThrNode *lchild,*rchild; //左右孩子指针
相关文章
相关标签/搜索