二叉树建立(C++)
二叉树的建立、递归遍历、层次遍历#include<iostream>#include<queue>using namespace std;class tree {public: char value;//结点值 tree *liftchild;//左子树指针 tree *rightChild;//右子树指针};void creat_tree(tree * &T)//创建二叉树{ char ch; ch = getchar()