摘要: #include <iostream>#include <stdio.h>#include <stdlib.h>using namespace std; typedef struct tree{ int data; struct tree *left,*right; }Tree;void Creat 阅读全文