关于输入的问题
int tmp;
void CreateTree(TreeNode*p) //创建二叉树
{
cout<<"please input the data:"<<endl;
cin>>tmp;
if(' '==tmp) //什么时候为空
p=NULL;
else
{
p=new TreeNode(tmp);
CreateTree(p->lchild);
CreateTree(p->rchild);
}
现在加的判断条件是 ' '==tmp
但是tmp获得的值并不包含空格 怎样的判断条件才能实现相同的功能