• 大小: 908B
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: 其他
  • 标签:

资源简介

输入若干数据,以任意字母结束,以此数据建立有序二叉树,并先序遍历输出。

资源截图

代码片段和文件信息

#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(

评论

共有 条评论

相关资源