精选优质文档-倾情为你奉上树和二叉树以下问题要求统一在一个大程序里解决。10、 按先序遍历的扩展序列建立二叉树的存储结构11、 二叉树先序、中序、后序遍历的递归算法12、 二叉树中序遍历的非递归算法13、 二叉树层次遍历的非递归算法14、 求二叉树的深度(后序遍历)15、 建立树的存储结构16、 求树的深度17、源程序代码:/ tree.cpp : Defines the entry point for the console application./#include stdafx.h#include stdio.h#include stdlib.h #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define OVERFLOW -1typedef char TElemType; /