树--创建二叉树的二叉链表(由先序中序输出后序)

#include<iostream> #include <stdlib.h> #include <stdio.h> #include <string.h> using namespace std; typedef struct node{ char info; node* lchild; node* rchild; }node, *Pnode;//树的结构体 Pnode creat(
相关文章
相关标签/搜索