数据结构C语言-线索二叉树

#include <stdio.h> #include <stdlib.h> #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int status; typedef char ElemType; typedef struct BiThrNode { ElemType data; struct BiThrNode
相关文章
相关标签/搜索