c++ 二叉排序树
碳酸钙的01妖精
这个作者很懒,什么都没留下…
展开
-
二叉排序树的判断
二叉排序树的判断#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct Node{ char Data; struct Node* LChild; struct Node* RChild; //先序遍历创建}BiTNode,*PBiTNode...原创 2018-06-20 08:48:55 · 341 阅读 · 0 评论 -
二叉排序树模板
二叉排序树模板二叉排序树的判定void Is_BSTree(PBiTNode bt) //左子树回溯后,下一步一定是进入右子树{ if(bt!=NULL) { if(flag&&bt->LChild) { if(bt->LChild->Data>=bt->Data) ...原创 2018-06-20 12:01:49 · 240 阅读 · 0 评论 -
二叉排序树 (创建+插入+删除)
二叉排序树 (创建+插入+删除)#include <stdio.h> #include <stdlib.h> typedef struct Node { int Data; struct Node *LChild; struct Node *RChild; int Ltag; int Rtag; }BSTNode,*PBSTNode;...原创 2018-06-20 08:49:12 · 514 阅读 · 1 评论 -
二叉排序树 (合并)
二叉排序树 (合并)#include <stdio.h> #include <stdlib.h> typedef struct Node { int Data; struct Node *LChild; struct Node *RChild; int Ltag; int Rtag; }BSTNode,*PBSTNode; void ...原创 2018-06-20 08:48:29 · 844 阅读 · 0 评论