[求助]建一个二叉树的问题
求大虾帮我用TurboC编一个小程序,其要求如下:用链式存储方式建一个二叉树,要可以接受data to data,要实现两个算法:中缀遍历和后序遍历.
并分析时间复杂性.
我是个刚入门的小菜鸟 还望各位大虾指教.
哦对了 源代码里面要包含这几间
typedef struct node *tree_ptr;
typedef struct node
{
int data;
tree_ptr left_child,right_child;
}
要包含这几行程序(如下)
typedef struct node *tree_ptr;
typedef struct node
{
int data;
tree_ptr left_child,right_child;
}
哪位高手帮帮我 星期一就要交了