C语言数据结构二叉树的顺序存储基本操做

#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_TREE_SIZE 100 // 二叉树的最大结点数 typedef char TElemType; typedef TElemType SqBiTree[MAX_TREE_SIZE]; // 0号单元存储根结点web TElemType Nil = ’ '
相关文章
相关标签/搜索