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 = ’ '
相關文章
相關標籤/搜索