void traverse(pBitree root)
{
queue<pBitree>T;
T.push(root);
while (!T.empty())
{
printf("%c", T.front()->data);
if (T.front()->lchild!=NULL)
T.push(T.front()->lchild);
if (T.front()->lchild!=NULL)
T.push(T.front()->rchild);
T.pop();
}
}