建立二叉樹的二叉鏈表存儲結構

#include<stdio.h> #include<stdlib.h> #include<string.h> #define MAXLEN 100 typedef char ElemType; typedef char DataType; //二叉鏈表存儲結構 typedef struct BiTNode { DataType data; struct BiTNode *lchild;
相關文章
相關標籤/搜索