void PreOrder_NonRecursive(BiTree root){ SeqStack S; BiTree p; //不能再定义新变量
if (root==NULL) return; InitStack(&S); Push(&S,root); while (__________________) { ...... }
}