二叉搜索树C++实现

  1 template<typename Element>
  2 class BinarySearchTree
  3 {
  4     public:
  5         BinarySearchTree():root(NULL){}
  6         BinarySearchTree(const BinarySearchTree& bst):root(NULL)
  7         {
  8             operator=(bst);
  9         }
 10         virtual ~BinarySearchTree()
 11         { clear(root); }
 12
 13         void insert(const Element& e)
 14         { insert(root, e); }
 15         void remove(const Element& e)
 16         { remove(root, e); }
 17         bool contains(const Element& e) const
 18         { return contains(root, e); }
 19         const Element& findMin() const
 20         { return findMin(root); }
 21         const Element& findMax() const
 22         { return findMax(root); }
 23         bool isEmpty() const
 24         { return root==NULL; }
 25         void clear()
 26         { clear(root); }
 27
 28         const BinarySearchTree& operator=(const BinarySearchTree& bst)
 29         {
 30             if(this!=&bst)
 31             {
 32                 clear();
 33                 root = clone(bst.root);
 34             }
 35             return *this;
 36         }
 37
 38     private:
 39         struct BSTNode
 40         {
 41             Element element;
 42             BSTNode *left;
 43             BSTNode *right;
 44             BSTNode(const Element& e, BSTNode *lt, BSTNode *rt):
 45                 element(e), left(lt), right(rt){}
 46         };
 47         BSTNode *root;
 48
 49         BSTNode* clone(BSTNode * t)
 50         {
 51             if(t!=NULL)
 52             {
 53                 return new BSTNode(t->element, clone(t->left), clone(t->right));
 54             }
 55             return NULL;
 56         }
 57         void clear(BSTNode * &t)
 58         {
 59             if(t!=NULL)
 60             {
 61                 clear(t->left);
 62                 clear(t->right);
 63                 delete t;
 64             }
 65             t = NULL;
 66         }
 67         void insert(BSTNode * &t, const Element& e)
 68         {
 69             if(t!=NULL)
 70             {
 71                 if(e<t->element)
 72                 {
 73                     insert(t->left, e);
 74                 }
 75                 else if(e>t->element)
 76                 {
 77                     insert(t->right, e);
 78                 }
 79                 else
 80                 {
 81                 }
 82             }
 83             else
 84             {
 85                 t = new BSTNode(e, NULL, NULL);
 86             }
 87         }
 88         void remove(BSTNode * &t, const Element& e)
 89         {
 90             if(t!=NULL)
 91             {
 92                 if(e<t->element)
 93                 {
 94                     remove(t->left, e);
 95                 }
 96                 else if(e>t->element)
 97                 {
 98                     remove(t->right, e);
 99                 }
100                 else if(t->left!=NULL&&t->right!=NULL)
101                 {
102                     t->element = findMin(t->right);
103                     remove(t->right, t->element);
104                 }
105                 else
106                 {
107                     BSTNode *tmp = t;
108                     t = t->left!=NULL?t->left:t->right;
109                     delete tmp;
110                 }
111             }
112         }
113         bool contains(BSTNode * t, const Element& e) const
114         {
115             if(t!=NULL)
116             {
117                 if(e<t->element)
118                 {
119                     return contains(t->left, e);
120                 }
121                 else if(e>t->element)
122                 {
123                     return contains(t->right, e);
124                 }
125                 else
126                 {
127                     return true;
128                 }
129             }
130             else
131             {
132                 return false;
133             }
134         }
135         const Element& findMin(BSTNode* t) const
136         {
137             return t->left!=NULL?findMin(t->left):t->element;
138         }
139         const Element& findMax(BSTNode* t) const
140         {
141             return t->right!=NULL?findMax(t->right):t->element;
142         }
143 };
时间: 2024-12-17 13:29:48

二叉搜索树C++实现的相关文章

用JS实现二叉搜索树

二叉树的节点最多只能有两个子节点,一个左侧子节点,一个右侧子节点. 二叉搜索树(BST),是二叉树的一种,但只允许在左侧节点存储比父节点小的值,在右侧节点存储比父节点大或等于父节点的值. 1.创建BST 1.1创建BST类 首先申明BST类的基本结构 function BinarySearchTree() { var Node = function(key){ this.key = key; this.left = null; this.right = null; }; var root = n

538. Convert BST to Greater Tree 二叉搜索树转换为更大树

Given a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus sum of all keys greater than the original key in BST. Example: Input: The root of a Binary Search Tree like thi

二叉搜索树

#include<stdio.h> #include<iostream> #include<math.h> #include<stdlib.h> using namespace std; struct TreeNode { TreeNode* p; TreeNode* l; TreeNode* r; int key; TreeNode() { p = 0; l = 0; r = 0; key = -1; } }; const int RANDMOD = 30

04-树4 是否同一棵二叉搜索树

给定一个插入序列就可以唯一确定一棵二叉搜索树.然而,一棵给定的二叉搜索树却可以由多种不同的插入序列得到.例如分别按照序列{2, 1, 3}和{2, 3, 1}插入初始为空的二叉搜索树,都得到一样的结果.于是对于输入的各种插入序列,你需要判断它们是否能生成一样的二叉搜索树. 输入格式: 输入包含若干组测试数据.每组数据的第1行给出两个正整数N (≤10)和L,分别是每个序列插入元素的个数和需要检查的序列个数.第2行给出N个以空格分隔的正整数,作为初始插入序列.最后L行,每行给出N个插入的元素,属于

二叉搜索树建立、插入、删除、前继节点、后继节点之c++实现

一.前言 一直以来,都对树有关的东西望而却步.以前每次说要看一看,都因为惰性,时间就那么荒废掉了.今天下个决心,决定好好的数据结构中的东西看一下.不知道看这篇文章的你,是不是和我有同样的感受,空有一颗努力的心,却迟迟没有付出行动.如果是的话,如果也想好好的把树的知识巩固一下的话,就让我们一起好好儿地把知识点过一遍吧.本文争取让看完的每一个没有基础的同学,都能有所收获.在正文开始前,先给自己加个油.加油(^ω^) 二.二叉搜索树的定义 二叉搜索树是指,对于某一个节点而言,它左边的节点都小于或等于它

剑指offer:二叉搜索树与双向链表

1.题目描述: 输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表.要求不能创建任何新的结点,只能调整树中结点指针的指向. 2.解题思路: (1)将左子树构造成双向链表,并返回链表头节点: (2)定位左子树双链表的尾节点: (3)如果左子树链表不为空,将当前root连缀其链尾: (4)将右子树构造出双向链表,并返回链表头节点: (5)如果右子树链表不为空,将当前root连缀其表头: (6)根据左子树链表是否为空,确定返回的节点. 3.JavaScript实现: function Conv

数据结构——二叉搜索树、B树、B-树

数据结构——二叉搜索树.B树.B-树 1. 综述 二叉排序树(Binary Sort Tree),又叫二叉查找树(Binary Search Tree),也叫二叉排序树. 二叉搜索树满足以下性质: 1. 若根节点左子树不为空,则左子树上的所有节点均小于根节点: 2. 若根节点右子树不为空,则右子树上的所有节点均大于根节点: 3. 其左右子树也是二叉搜索树(递归定义): 4. 没有键值相等的点. B树就是B-树.B树/B-树英文叫B-Tree,可能被不小心翻译成了B-树.

PAT天梯赛练习题 L3-010. 是否完全二叉搜索树(完全二叉树的判断)

L3-010. 是否完全二叉搜索树 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 陈越 将一系列给定数字顺序插入一个初始为空的二叉搜索树(定义为左子树键值大,右子树键值小),你需要判断最后的树是否一棵完全二叉树,并且给出其层序遍历的结果. 输入格式: 输入第一行给出一个不超过20的正整数N:第二行给出N个互不相同的正整数,其间以空格分隔. 输出格式: 将输入的N个正整数顺序插入一个初始为空的二叉搜索树.在第一行中输出结果树的层序

Java数据结构之二叉搜索树

Java数据结构之二叉搜索树 1.二叉搜索树组成 二叉搜索树又称为二叉排序树,它或者是一颗空树,或者是一颗具有如下特性的非空二叉树,需要满足一下三个条件: (1)若它的左子树非空,则左子树上所有结点的关键字均小于根结点的关键字: (2)若它的右子树非空,则右子树上所有结点的关键字均大于(可以等于)根结点的关键字. (3)左子树右子树本身又各是一颗二叉搜索树 在算法描述中,均以结点值的比较来代表其关键字的比较,因为若结点的值为类类型时,该类必须实现系统提供的java.lang.comparable

二叉搜索树与双向链表

void convertNode(BSTreeNode *root, BSTreeNode ** pLastNodeInList) { if(!root) return ; if(root->left) { convertNode(root->left, pLastNodeInList); } root->left = *pLastNodeInList; if(*pLastNodeInList != NULL) (*pLastNodeInList)->right = root; *