博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BST_insert
阅读量:5237 次
发布时间:2019-06-14

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

 

#include 
/* printf, scanf, NULL */#include
/* malloc, free */struct node{ int key; struct node *left, *right, *point;};typedef struct node Node;Node *root = NULL;/* z points to a node to be insert into the tree with root x */void Insert(node *x, node *z){ if ( x == NULL ) { root = z; return; } else { if ( z->key < x->key ) { if ( x->key == NULL ) x->left = z; else Insert(x->left, z); } else if ( x->key > z->key ) { if ( x->right == NULL) x->right = z; else Insert(x->right, z); } else printf("Error: k already exists in this tree!\n"); } }void Inorder(Node *x){ if ( x == NULL ) return; if ( x->left ); Inorder( x->left ); printf("%d", x->key); if ( x->right ) Inorder( x->right );}void Preorder(Node *x){ if ( x == NULL ) return; printf("%d", x->key); if ( x->left ); Inorder( x->left ); if ( x->right ) Inorder( x->right ); }int mian(){ Node *new_node; new_node = (Node *) malloc(sizeof(Node)); new_node->left = new_node->right = NULL; new_node->key = 15; Insert(root, new_node); return 0;}
View Code

 

转载于:https://www.cnblogs.com/ruruozhenhao/p/7944387.html

你可能感兴趣的文章
手机端h5 ajax 上传图片支持微信内置浏览器
查看>>
【Maven】Mac 使用 zsh 后 mvn 命令就无效
查看>>
移动的彩虹
查看>>
Redmine
查看>>
HtmlEditor常用模式
查看>>
Another app is currently holding the yum lock; waiting for it to exit.. yum被锁定无法使用
查看>>
52.tableViewCell重用机制避免重复显示问题
查看>>
帧的最小长度 CSMA/CD
查看>>
xib文件加载后设置frame无效问题
查看>>
第一次博客
查看>>
Java Map 常见用法举例
查看>>
编程算法 - 左旋转字符串 代码(C)
查看>>
SqlServer数据库字典--表.视图.函数.存储过程.触发器.主键.外键.约束.规则
查看>>
项目内容
查看>>
小知识点--crontab
查看>>
mac上使用jmeter录制web项目和手机app
查看>>
JS类型转换(强制和自动的规则)
查看>>
??运算符
查看>>
struct与subprocess 模块
查看>>
Mozilla Firefox15怎么样才能把标签页弄到下面去,就和360的一样,Mozilla Firefox15没有取消标签置顶这个选项……...
查看>>