编程高手来帮忙啊~~~~

#include"stdio.h"#include"conio.h"#include"alloc.h"typedef struct btree{ char data; struct btree *left; struct btree *right;} btnode ,*Btree; Btree Root; void init() { Root=NULL; } void creat(Btree *bt) { char ch; ch=getchar(); if(ch=='.')*bt=NULL; else { *bt=(Btree)malloc(sizeof(btnode...
默认分类 | 2008-07-19 11:37 | 阅读 4512 次 | 评论 0 条
文章分类
文章归档
最新评论