博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
创建二叉树
阅读量:5166 次
发布时间:2019-06-13

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

全部代码

 

#include 
#include
#include
typedef struct node{ int nValue; struct node *pLeft; struct node *pRight;}BiTree;BiTree *CreateBiTree(void){ BiTree *pRoot = NULL; //根 pRoot = (BiTree *)malloc(sizeof(BiTree)); if(NULL == pRoot) { printf("pRoot空间分配失败!\n"); exit(-1); } pRoot->nValue = 1; pRoot->pLeft = NULL; pRoot->pRight = NULL; //根的左 pRoot->pLeft = (BiTree *)malloc(sizeof(BiTree)); if(NULL == pRoot->pLeft) { printf("pRoot->pLeft空间分配失败!\n"); exit(-1); } pRoot->pLeft->nValue = 2; pRoot->pLeft->pLeft = NULL; pRoot->pLeft->pRight = NULL; //根的右 pRoot->pRight = (BiTree *)malloc(sizeof(BiTree)); if(NULL == pRoot->pRight) { printf("pRoot->pRight空间分配失败!\n"); exit(-1); } pRoot->pRight->nValue = 3; pRoot->pRight->pLeft = NULL; pRoot->pRight->pRight = NULL; //左的左 pRoot->pLeft->pLeft = (BiTree *)malloc(sizeof(BiTree)); if(NULL == pRoot->pLeft->pLeft) { printf("pRoot->pLeft->pLeft空间分配失败!\n"); exit(-1); } pRoot->pLeft->pLeft->nValue = 4; pRoot->pLeft->pLeft->pLeft = NULL; pRoot->pLeft->pLeft->pRight = NULL; //左的右 pRoot->pLeft->pRight = (BiTree *)malloc(sizeof(BiTree)); if(NULL == pRoot->pLeft->pRight) { printf("pRoot->pLeft->pRight空间分配失败!\n"); exit(-1); } pRoot->pLeft->pRight->nValue = 5; pRoot->pLeft->pRight->pLeft = NULL; pRoot->pLeft->pRight->pRight = NULL; //右的左 pRoot->pRight->pLeft = (BiTree *)malloc(sizeof(BiTree)); if(NULL == pRoot->pRight->pLeft) { printf("pRoot->pRight->pLeft空间分配失败!\n"); exit(-1); } pRoot->pRight->pLeft->nValue = 6; pRoot->pRight->pLeft->pLeft = NULL; pRoot->pRight->pLeft->pRight = NULL; return pRoot;}//递归创建二叉树void RecCreateBiTree(BiTree **ppRoot){ int nNum; assert(ppRoot!=NULL); //输入节点的值 scanf("%d", &nNum); //检测是否是结束标志 if(0 == nNum) { return; } *ppRoot = (BiTree *)malloc(sizeof(BiTree)); if(NULL == *ppRoot) { printf("*ppRoot空间分配失败!"); exit(-1); } (*ppRoot)->nValue = nNum; (*ppRoot)->pLeft = NULL; (*ppRoot)->pRight = NULL; //处理当前节点的左和右 RecCreateBiTree(&(*ppRoot)->pLeft); RecCreateBiTree(&(*ppRoot)->pRight);}//前序遍历void PreOrderTraversal(BiTree *pRoot){ if(NULL == pRoot) { return; } printf("%d ", pRoot->nValue); PreOrderTraversal(pRoot->pLeft); PreOrderTraversal(pRoot->pRight);}//中序遍历void MidOrderTraversal(BiTree *pRoot){ if(NULL == pRoot) { return; } MidOrderTraversal(pRoot->pLeft); printf("%d ", pRoot->nValue); MidOrderTraversal(pRoot->pRight);}//后序遍历void LastOrderTraversal(BiTree *pRoot){ if(NULL == pRoot) { return; } LastOrderTraversal(pRoot->pLeft); LastOrderTraversal(pRoot->pRight); printf("%d ", pRoot->nValue);}int main(void){ BiTree *pRoot = CreateBiTree(); PreOrderTraversal(pRoot); printf("\n"); MidOrderTraversal(pRoot); printf("\n"); LastOrderTraversal(pRoot); return 0;}

 

转载于:https://www.cnblogs.com/chen-cai/p/7806003.html

你可能感兴趣的文章
菜单和工具条(二)
查看>>
hadoop17---RPC和Socket的区别
查看>>
[BZOJ 3531] [Sdoi2014] 旅行 【离线+LCT】
查看>>
使用JMeter代理录制app测试脚本
查看>>
MVC 未启用角色管理功能
查看>>
Linq to Object实现分页获取数据
查看>>
mac常用系统命令
查看>>
第42章:MongoDB-集群--Sharding(分片)--单机的搭建
查看>>
异步执行js脚本——防止阻塞
查看>>
利用Excel导出sql语句
查看>>
android上传文件到服务器
查看>>
我回答了90%的面试题,为什么还被拒?
查看>>
Html - Table 表头固定和 tbody 设置 height 在IE不起作用的解决
查看>>
iOS SVN终端指令
查看>>
Linux如何更新软件源
查看>>
NYOJ-289 苹果 又是一个典型的01背包和上题一样没啥好说的
查看>>
HDU 2262 回溯算法 递归枚举
查看>>
九度0J 1374 所有员工年龄排序
查看>>
listview初始化后仍为空
查看>>
无刷新分页
查看>>