#include<iostream.h>
#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<conio.h>
typedef char telemtype;
typedef int status;
typedef struct bitnode
{ telemtype data;
struct bitnode *lchild,*rchild;
}bitnode,*bitree;
bitree t;
......................
阅读全部 | 2011年11月13日 04:49