单选题 判断线索二叉树中某结点*p有左孩子的条件是______。
  • A.p->lchild==NULL
  • B.p->lchild==0
  • C.p->ltag==0
  • D.p->ltag==1
【正确答案】 C
【答案解析】有左孩子表示不是线索,即p->ltag=0。