首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴lovexiang的代码贴全部
#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
1
lovexiang