摘要: 实现了顺序存储结构的二叉树和队列的基本操作,以下是相关函数及类型的声明#include <stdio.h>#include <stdlib.h>#include <string.h>#include <malloc.h> #include <math.h>#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define MAX_TREE_SIZE 100#define MAX_QUEUE_SIZE 5#define Nil ' ' typedef char 阅读全文
posted @ 2012-08-12 04:00 白光 阅读(11620) 评论(1) 推荐(0) 编辑