有关二叉树的小问题
#include <iostream>using namespace std;
struct BiNode
{
char data;
BiNode *lchild ,*rchild;
};
BiNode *Creat()
{
char ch;BiNode *root;
cin>>ch;
if(ch=='#') root=NULL;//建立一颗空树
else{
root=new BiNode;
root->data=ch;
//cout<<root->data;
root->lchild=Creat();//递归建立左子树
root->rchild=Creat();//递归建立右子树
}
return 0;
}
void output(BiNode *root)
{
if(root!=NULL)
cout<<root->data<<endl;
output(root->lchild);
output(root->rchild);
}
int main()
{
BiNode *a;
Creat();
output(a);
return 0;
}
程序不知怎么没输出结果!!!请大家指点一下!!谢谢