1. 请根据用户输入的“扩展的先序遍历序列”(用小圆点表示空子树),建立以二叉链表方式存储的二叉树,然后写出后序遍历该二叉树的非递归算法,并将对应的程序调试运行通过。
#include<stdio.h>
#include<stdlib.h>
#define FALSE 0
#define TRUE 1
#define ERROR 0
#define OK 1
#define OVERFLOW -2
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef int status;
//二叉树的二叉链表存储表示
typedef struct BiTNode{
struct BiTNode *lchild, *rchild;
char data;
}BiTNode, * BiTree;
//顺序栈的存储表示
typedef struct SqStack{
int stacks