摘要:
#include<stdio.h>#include<stdlib.h> #define MAXLen 100 //最大节点数typedef char DATA;//元素类型typedef struct CBT{ DATA data; struct CBT *left;//左子树节点指针 struct CBT *right;//右子树节点指针}CBTType; CBTType *InitTree... 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h>#include<string.h> #define QUEUELEN 15 typedef struct{ char name[10]; int age;}DATA; typedef struct{ DATA data[QUEUELEN]; int head; int tail;}SQType; SQType *SQTyp... 阅读全文