首页 > 代码库 > 二叉查找树模版
二叉查找树模版
不过自己整理的一份模版。怕时间久了会忘掉。主程序里面是自己做的一些測试。可以完毕输出查找插入和删除四种功能。接下来会在这个程序上完毕平衡树Treap的部分功能
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <iostream> #include <algorithm> using namespace std; typedef long long ll; const int inf=0x3f3f3f3f; const int maxn=100010; struct Treap_Node{ Treap_Node *left,*right; int value; }; Treap_Node *root; void Treap_Print(Treap_Node *P){//从小到大输出 if(P){ Treap_Print(P->left); printf("%d\n",P->value); Treap_Print(P->right); } } int Treap_Find(Treap_Node *P,int value){//查找有没有value这个数 if(!P) return 0; if(P->value=http://www.mamicode.com/=value) return 1;>
二叉查找树模版
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。