创建二叉树的二叉链表(已知先序和中序,求后序)

创建二叉树的二叉链表(已知先序和中序,求后序)post #include <stdio.h> #include <stdlib.h> #include <string.h> //原理:由前序和中序能够肯定惟一的二叉树 typedef struct Node { char Data; struct Node* LChild; struct Node* RChild;
相关文章
相关标签/搜索