二叉树的存储结构二叉树的存储结构1.顺序存储方式1234567#define MaxSize 100struct TreeNode{ ElemType value; //结点中的数据元素 bool isEmpty; //结点是否为空};TreeNode t[MaxSize];2.链式存储结构1234typedef struct BiTNode{ ElemType data; //数据域 struct BiTNode *lchild,*rchild; //左右孩子指针}BiTNode,*BiTree;3.三叉链表三叉链表—方便找父节点12345typedef struct BiTNode{ ElemType data; //数据域 struct BiTNode *lchild,*rchild; //左右孩子指针 struct BiTNode *parent; //父结点指针}BiTNode,*BiTree; Algorithm Data Structure本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处! 由遍历顺序构建二叉树(前序+中序;后序+中序) 上一篇串的存储结构 下一篇 Please enable JavaScript to view the comments