资源简介
输入若干数据,以任意字母结束,以此数据建立有序二叉树,并先序遍历输出。
代码片段和文件信息
#include “stdio.h“
typedef struct tree
{
int d;
struct tree *lt;
struct tree *rt;
}bst*pbst**ppbst;
pbst init();
void comp(ppbst bstint d);
void inorder(pbst bst);
#include “stdlib.h“
pbst init()
{
pbst bt=(pbst)malloc(sizeof(bst));
bt->d=0;
bt->lt=NULL;
bt->rt=NULL;
return bt;
}
void comp(ppbst bstint d)
{
if(*bst!=NULL)
{
if((*bst)->d>d)
comp(&(*bst)->ltd);
else if((*bst)->d comp(
- 上一篇:中小企业典型网络组网实验报告
- 下一篇:手机采集摄像头视频socket实时传播
评论
共有 条评论