二叉樹之線索二叉樹基本操做(C++實現)

#include<iostream> using namespace std; typedef char TElemType; //TElemType 至關於 char typedef struct BiThrNode { TElemType data; struct BiThrNode *lchild,*rchild; //左右孩子指針
相關文章
相關標籤/搜索