powers7 的 站内主页
#include<iostream>#define MAXSIZE 100using namespace std;typedef int ElemType;typedef struct SeqList{ ElemType data[MAXSIZE]; int length;}SeqList;SeqList SeqL....
Read More >
2008
05-14
05-14
#include<iostream>using namespace std;typedef char DataType;/******结点类型**************/typedef struct BitNode{ DataType data; struct BitNode *lchild,*rchild;}B....
Read More >