#include<stdio.h>#include<stdlib.h>#define depth 5typedef int Status;typedef char TElemtype;typedef struct BiTNode{ TElemtype data; struct BiTNode *lchild,*rchild;}*BiTree;Status printElem
#include<stdio.h>#include<stdlib.h>#define MAXSTRSIZE 255typedef unsigned char SString[MAXSTRSIZE+2];//0号单元存放串长度,最后一个单元 存放'\0'typedef int Status;Status StrAssign(SString &T,char *chars
#include<stdio.h>#include<stdlib.h>#define STACK_INIT_SIZE 100#define STACKINCREMENT 10typedef struct{ char name[10]; int score;}student;typedef struct { student *base; student *top; int s
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号