二叉树的遍历插入删除

时间:2012-11-17 13:05:03
【文件属性】:

文件名称:二叉树的遍历插入删除

文件大小:245KB

文件格式:DOC

更新时间:2012-11-17 13:05:03

二叉树

数据结构中关于二叉树的遍历插入删除/ GGGG.cpp : Defines the entry point for the console application. #include "stdafx.h" #include #include #define Max 100 typedef struct BT { char data; BT* lchild; BT* rchild; }BT; int count=0; //建立二叉树 等


网友评论