博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c语言二叉树函数,二叉树C语言算法,急!!!!
阅读量:6158 次
发布时间:2019-06-21

本文共 1721 字,大约阅读时间需要 5 分钟。

清华大学 严蔚敏 的都有完整的代码,解释的也很清楚

#include

#include

#include

typedef struct tree

{

struct tree *left;

int date;

struct tree *right;

}treenode,*b_tree;

///插入节点/

b_tree insert(b_tree root,int node)

{

b_tree newnode;

b_tree currentnode;

b_tree parentnode;

newnode=(b_tree)malloc(sizeof(treenode));

newnode->date=node;

newnode->right=NULL;

newnode->left=NULL;

if(root==NULL)

return newnode;

else

{

currentnode=root;

while(currentnode!=NULL)

{

parentnode=currentnode;

if(currentnode->date>node)

currentnode=currentnode->left;

else

currentnode=currentnode->right;

}

if(parentnode->date>node)

parentnode->left=newnode;

else

parentnode->right=newnode;

}

return root;

}

//建立树///

b_tree creat(int *date,int len)

{

b_tree root=NULL;

int i;

for(i=0;ileft);

printf("%d->",root->date);

print1(root->right);

}

}

//后序打印

void print2(b_tree root)

{if(root!=NULL)

{

print2(root->left);

print2(root->right);

printf("%d->",root->date);

}

}

//前序打印

void print3(b_tree root)

{if(root!=NULL)

{ printf("%d->",root->date);

print3(root->left);

print3(root->right);

}

}

//在二叉树中查找给定关键字

b_tree lookfor(b_tree root,int e)

{

b_tree p1,p2;

if(root!=NULL)

{

if(root->date==e)

return root;

else

p1=lookfor(root->left,e);

p2=lookfor(root->right,e);

if(p1!=NULL)

return p1;

else

if(p2!=NULL)

return p2;

else

return NULL;

}

else return NULL;

}

///测试函数//

void main()

{

b_tree root=NULL;

int i,index;

int value;

int nodelist[20];

cout>value;

while(value!=0)

{

nodelist[index]=value;

index=index 1;

cin>>value;

}

root=creat(nodelist,index);

printf("

中序打印

");

print1(root);

printf("

后序打印

");

print2(root);

printf("

前序打印

");

print3(root);

printf("

查找的词:

");

int a;

scanf("%d",&a);

b_tree p3=lookfor(root,a);

if(p3!=NULL)

printf("%d

",p3->date);

else

printf("没你要找的词"); }。

全部

转载地址:http://nkifa.baihongyu.com/

你可能感兴趣的文章
向上扩展型SSD 将可满足向外扩展需求
查看>>
虚机不能启动的特例思考
查看>>
SQL Server编程系列(1):SMO介绍
查看>>
在VMware网络测试“专用VLAN”功能
查看>>
使用Formik轻松开发更高质量的React表单(三)<Formik />解析
查看>>
也问腾讯:你把用户放在什么位置?
查看>>
CSS Sprites 样式生成工具(bg2css)
查看>>
[转]如何重构代码--重构计划
查看>>
类中如何对list泛型做访问器??
查看>>
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
[译]ECMAScript.next:TC39 2012年9月会议总结
查看>>
【Xcode】编辑与调试
查看>>
用tar和split将文件分包压缩
查看>>