【C++】二叉搜索树(BST)

简介: 二叉搜索树(Binary Search Tree, BST)是一种特殊的二叉树,其每个节点的左子树所有节点值小于该节点值,右子树所有节点值大于该节点值,且左右子树也均为二叉搜索树。BST支持高效的数据查找、插入和删除操作,时间复杂度通常为O(log n)。本文档详细介绍了BST的基本概念、存储结构及其实现,包括迭代和递归两种方式的查找、插入、删除等操作的具体代码示例。

前言:

在数据结构中学习过二叉树,链式二叉树,顺序二叉树,区别于二者的的一种特殊的二叉树是二叉搜索树

二叉搜索树介绍(BST

二叉搜索树Binary Search Tree,BST)是一种特殊的二叉树

它具有以下性质:

  • 如果树非空,则左子树上所有节点的值都小于根节点的值,右子树上所有节点的值都大于根节点的值,且左右子树各自也是二叉搜索树。
  • 二叉搜索树的特点是能够快速执行查找、插入和删除操作,其时间复杂度通常为对数级别.

如下,是一个简易的二叉搜索树

flowchart TD
8-->3
8-->10
10-->9
10-->14
14-->12
14-->13
3-->1
3-->6
6-->4
6-->7

二叉搜索树基本操作(BST

二叉搜索树的存储结构(K模型)

  • 如果构成KV模型仅仅在加一个模板参数就好了
  • 二树经典的左右指针,和存储数据声明
template<class K>
    class BSTTree
    {
   
        public:
        BSTTree<K>* _left;
        BSTTree<K>* _right;
        K _key;


        BSTTree(const K& key)
            : _left(nullptr)
                , _right(nullptr)
                , _key(key)
            {
   }
    };

默认成员函数

拷贝构造

  • 采用递归的方式
Node* _Copy(Node* root)
{
   
    if (root == nullptr)
        return nullptr;

    Node* copynode = new Node(root->_key);

    copynode->_left = _Copy(root->_left);
    copynode->_right = _Copy(root->_right);

    return copynode;

}

赋值运算符号重载

  • 传值拷贝,直接进行交换
BST(const BST<K>& copy)
{
   
    _root = _copy(copy._root);
}

析构函数

  • ~BST()直接实现调用的递归
~BST()
{
   
    _destory(_root);
}

void _destory(Node* root)
{
   
    if (root == nullptr)
        return;

    _destory(root->_left);
    _destory(root->_right);
    delete root;
    root = nullptr;

}

BST查找

  • 二叉搜索树的查找操作从根节点开始,根据查找值与当前节点值的关系,选择向左子树或右子树递归查找。
  • 如果当前节点的值等于查找值,则找到该节点;如果小于查找值,则向右子树查找;如果大于查找值,则向左子树查找。如
  • 果查找过程中到达叶节点仍未找到对应值,则表明该值不存在于树中

迭代

bool Find(const K& key)
{
   
    if (_root == nullptr)
        return false;

    Node* cur = _root;

    while (cur)
    {
   
        if (key < cur->_key)
        {
   
            cur = cur->_left;
        }
        else if (key > cur->_key)
        {
   
            cur = cur->_right;
        }
        else
        {
   
            return true;
        }
    }

    return false;
}

递归

  • 由于在类的内部,类外参数不能传this指针,采用类内传递的形式,进而实现递归
bool Find(const K& key)
{
   
    return _Find(_root ,key);
}

bool _Find(Node* root,const K& key)
{
   
    if (root == nullptr)
        return false;

    if (root->_key < key)
    {
   
        return _FindR(root->_right, key);
    }
    else if (root->_key > key)
    {
   
        return _FindR(root->_left, key);
    }
    else
    {
   
        return true;
    }
}

BST插入

  • 插入操作首先检查树是否为空,如果为空,则新建一个包含待插入值的节点作为根节点。
  • 如果树不为空,则根据二叉搜索树的性质,从根节点开始向下遍历,直至找到一个空的子节点位置,将新节点插入到该位置。
  • 新节点总是作为叶节点插入,以保持树的二叉搜索树属性.

迭代

  • 开始判断树是否为空树
  • 建立parent节点记录父亲节点
  • 进行遍历,查找叶子节点插入
  • 保存父亲的节点作用在进行,叶子节点插入的时候进行判断,新节点和叶子节点的大小关系
bool Insert(const K& key)
{
   
    if (_root == nullptr)
    {
   
        _root = new Node(key);
        return true;
    }

    Node* parent = nullptr;
    Node* cur = _root;

    while (cur)
    {
   
        parent = cur;
        if (key < cur->_key)
        {
   
            cur = cur->_left;
        }
        else if (key > cur->_key)
        {
   
            cur = cur->_right;
        }
        else
        {
   
            return false;
        }
    }

    if (key < parent->_key)
    {
   
        parent->_left = new Node(key);
    }
    else
    {
   
        parent->_right = new Node(key);
    }
    return true;
}

递归

  • 值得注意的点是传参数的时候是指针的引用。
  • 好处就是不用进行新节点与父亲节点的判断。
bool Insert(const K& key)
{
   
    return _Insert(_root,key);
}

bool _Insert(Node*& root ,const K& key)
{
   
    if (root == nullptr)
    {
   
        root = new Node(key);
        return true;
    }

    if (key < root->_key)
    {
   
        return _Insert(root->_left, key);
    }
    else if(key > root->_key )
    {
   
        return _Insert(root->_right, key);
    }
    else
    {
   
        return false;
    }
}

BST删除

  • 删除操作较为复杂,因为需要考虑被删除节点可能有零个、一个或两个子节点的情况。
  • 删除操作通常涉及到找到被删除节点的适当继任者(在有两个子节点的情况下,通常是其右子树中的最小节点或左子树中的最大节点),并用继任者的值替换被删除节点的值,然后删除被替换的节点

迭代

三种情况:

  • 要删除的结点无孩子结点 (叶子节点)
  • 要删除的结点只有左孩子结点
  • 要删除的结点只有右孩子结点
  • 要删除的结点有左、右孩子结点
bool Erase(const K& key)
{
   
    Node* cur = _root;
    Node* parent = _root;

    while (cur)
    {
   
        if (key < cur->_key)
        {
   
            parent = cur;
            cur = cur->_left;
        }
        else if (key > cur->_key)
        {
   
            parent = cur;
            cur = cur->_right;
        }//找到键值
        else
        {
       
            //左子树为空
            if (cur->_left == nullptr)
            {
   
                //祖先节点为键值
                if (cur == _root)
                {
   
                    cur = cur->_right;
                }
                else
                {
   
                    if (parent->_right == cur)
                    {
   
                        parent->_right = cur->_right;
                    }
                    else
                    {
   
                        parent->_left = cur->_right;
                    }
                }

            }//右子树为空
            else if (cur->_right == nullptr)
            {
   
                //祖先节点为键值
                if (cur == _root)
                {
   
                    _root = cur->_left;
                }
                else
                {
   
                    if (parent->_right == cur)
                    {
   
                        parent->_right = cur->_left;
                    }
                    else
                    {
   
                        parent->_left = cur->_left;
                    }
                }
            }
            else//左右子树均存在,查找右子树最大节点
            {
   
                Node* leftMax = cur->_left;
                while (leftMax->_right)
                {
   
                    parent = leftMax;
                    leftMax = leftMax->_right;
                }

                swap(leftMax->_key, cur->_key);
                //易错点,找到节点并不知道
                if (parent->_left == leftMax)
                {
   
                    parent->_left = leftMax->_left;
                }
                else
                {
   
                    parent->_right = leftMax->_left;
                }
                cur = leftMax;

            }
            delete cur;
            return true;

        }
    }
    return false;

}

迭代

  • 这里面也是指针的引用
bool Erase(const K& key)
{
   
    return _Erase(_root, key);
}

bool _Erase(Node*& root, const K& key)
{
   
    if (root == nullptr)
        return false;

    if (key < root->_key)
    {
   
        return _Erase(root->_left, key);
    }
    else if(key>root->_key)
    {
   
        return _Erase(root->_right, key);
    }
    else
    {
   
        Node* del = root;
        if (root->_left == nullptr)
        {
   
            root = root->_right;
        }
        else if (root->_right == nullptr)
        {
   
            root = root->_left;
        }
        else
        {
   
            Node* leftMax = root->_left;

            while (leftMax->_right)
            {
   
                leftMax = leftMax->_right;
            }

            swap(root->_key, leftMax->_key);

            return _Erase(root->_left, key);
        }
        delete del;
        return true;
    }
}

BST遍历

  • 直接递归实现
void _InOrder(Node* root)
{
   
    if (root == nullptr)
        return;

    _InOrder(root->_left);
    cout << root->_key << " ";
    _InOrder(root->_right);
}

源码

迭代

#pragma once


namespace MyBST
{
   
    template<class K>
    class BSTTree
    {
   
    public:
        BSTTree<K>* _left;
        BSTTree<K>* _right;
        K _key;


        BSTTree(const K& key)
            : _left(nullptr)
            , _right(nullptr)
            , _key(key)
        {
   }
    };



    template<class K>
    class BST
    {
   
        typedef BSTTree<K> Node;
    public:
        BST()
            :_root(nullptr)
        {
   }

        BST(const BST& t)
        {
   
            return _Copy(_root);
        }

        BST& operator=(const BST& t)
        {
   
            swap(_root, t._root);
            return *this;
        }
        ~BST()
        {
   
            _destory();
        }

        bool Insert(const K& key)
        {
   
            if (_root == nullptr)
            {
   
                _root = new Node(key);
                return true;
            }

            Node* parent = nullptr;
            Node* cur = _root;

            while (cur)
            {
   
                parent = cur;
                if (key < cur->_key)
                {
   
                    cur = cur->_left;
                }
                else if (key > cur->_key)
                {
   
                    cur = cur->_right;
                }
                else
                {
   
                    return false;
                }
            }

            if (key < parent->_key)
            {
   
                parent->_left = new Node(key);
            }
            else
            {
   
                parent->_right = new Node(key);
            }
            return true;
        }

        bool Find(const K& key)
        {
   
            if (_root == nullptr)
                return false;

            Node* cur = _root;

            while (cur)
            {
   
                if (key < cur->_key)
                {
   
                    cur = cur->_left;
                }
                else if (key > cur->_key)
                {
   
                    cur = cur->_right;
                }
                else
                {
   
                    return true;
                }
            }

            return false;
        }

        bool Erase(const K& key)
        {
   
            Node* cur = _root;
            Node* parent = _root;

            while (cur)
            {
   
                if (key < cur->_key)
                {
   
                    parent = cur;
                    cur = cur->_left;
                }
                else if (key > cur->_key)
                {
   
                    parent = cur;
                    cur = cur->_right;
                }
                else
                {
                       
                    if (cur->_left == nullptr)
                    {
   
                        if (cur == _root)
                        {
   
                            cur = cur->_right;
                        }
                        else
                        {
   
                            if (parent->_right == cur)
                            {
   
                                parent->_right = cur->_right;
                            }
                            else
                            {
   
                                parent->_left = cur->_right;
                            }
                        }

                    }
                    else if (cur->_right == nullptr)
                    {
   
                        if (cur == _root)
                        {
   
                            _root = cur->_left;
                        }
                        else
                        {
   
                            if (parent->_right == cur)
                            {
   
                                parent->_right = cur->_left;
                            }
                            else
                            {
   
                                parent->_left = cur->_left;
                            }
                        }
                    }
                    else
                    {
   
                        Node* leftMax = cur->_left;
                        while (leftMax->_right)
                        {
   
                            parent = leftMax;
                            leftMax = leftMax->_right;
                        }

                        swap(leftMax->_key, cur->_key);
                        //易错点
                        if (parent->_left == leftMax)
                        {
   
                            parent->_left = leftMax->_left;
                        }
                        else
                        {
   
                            parent->_right = leftMax->_left;
                        }
                        cur = leftMax;

                    }
                    delete cur;
                    return true;

                }
            }
            return false;

        }

        void InOrder()
        {
   
            _InOrder(_root);
            cout << endl;
        }

    private:


        void _destory(Node* root)
        {
   
            if(root == nullptr)
            {
   
                return;
            }

            _destory(root->_left);
            _destory(root->_right);
            delete root;
            root = nullptr;

        }

        Node* _Copy(Node* root)
        {
   
            Node* copynode = new Node(root->_key);

            copynode->_left = _Copy(root->_left);
            copynode->_right = _Copy(root->_right);

            return copynode;
        }

        void _InOrder(Node* root)
        {
   
            if (root == nullptr)
                return;

            _InOrder(root->_left);
            cout << root->_key << " ";
            _InOrder(root->_right);
        }



        Node* _root;


    };
}

递归

#pragma once
#include<iostream>

using namespace std;

namespace MyBSTR
{
   
    template<class K>
    class BSTTree
    {
   
    public:
        BSTTree<K>* _left;
        BSTTree<K>* _right;
        K _key;


        BSTTree(const K& key)
            : _left(nullptr)
            , _right(nullptr)
            , _key(key)
        {
   }
    };



    template<class K>
    class BST
    {
   
        typedef BSTTree<K> Node;
    public:
        BST()
            :_root(nullptr)
        {
   }

        BST(const BST<K>& copy)
        {
   
            _root = _copy(copy._root);
        }

        BST& operator=(BST t)
        {
   
            swap(_root, t.root);
            return *this;
        }
        ~BST()
        {
   
            _destory(_root);
        }

        bool Insert(const K& key)
        {
   
            return _Insert(_root,key);
        }

        bool Find(const K& key)
        {
   
            return _Find(_root ,key);
        }

        bool Erase(const K& key)
        {
   
            return _Erase(_root, key);
        }


        void InOrder()
        {
   
            _InOrder(_root);
            cout << endl;
        }

    private:

        void _destory(Node* root)
        {
   
            if (root == nullptr)
                return;

            _destory(root->_left);
            _destory(root->_right);
            delete root;
            root = nullptr;

        }


        Node* _Copy(Node* root)
        {
   
            if (root == nullptr)
                return nullptr;

            Node* copynode = new Node(root->_key);

            copynode->_left = _Copy(root->_left);
            copynode->_right = _Copy(root->_right);

            return copynode;

        }

        bool _Erase(Node*& root, const K& key)
        {
   
            if (root == nullptr)
                return false;

            if (key < root->_key)
            {
   
                return _Erase(root->_left, key);
            }
            else if(key>root->_key)
            {
   
                return _Erase(root->_right, key);
            }
            else
            {
   
                Node* del = root;
                if (root->_left == nullptr)
                {
   
                    root = root->_right;
                }
                else if (root->_right == nullptr)
                {
   
                    root = root->_left;
                }
                else
                {
   
                    Node* leftMax = root->_left;

                    while (leftMax->_right)
                    {
   
                        leftMax = leftMax->_right;
                    }

                    swap(root->_key, leftMax->_key);

                    return _Erase(root->_left, key);
                }
                delete del;
                return true;
            }
        }


        bool _Find(Node* root,const K& key)
        {
   
            if (root == nullptr)
                return false;

            if (root->_key < key)
            {
   
                return _FindR(root->_right, key);
            }
            else if (root->_key > key)
            {
   
                return _FindR(root->_left, key);
            }
            else
            {
   
                return true;
            }
        }
        //插入
        bool _Insert(Node*& root ,const K& key)
        {
   
            if (root == nullptr)
            {
   
                root = new Node(key);
                return true;
            }

            if (key < root->_key)
            {
   
                return _Insert(root->_left, key);
            }
            else if(key > root->_key )
            {
   
                return _Insert(root->_right, key);
            }
            else
            {
   
                return false;
            }
        }
        void _InOrder(Node* root)
        {
   
            if (root == nullptr)
                return;

            _InOrder(root->_left);
            cout << root->_key << " ";
            _InOrder(root->_right);
        }



        Node* _root;

    };
}
目录
相关文章
|
14天前
|
存储 人工智能 弹性计算
阿里云弹性计算_加速计算专场精华概览 | 2024云栖大会回顾
2024年9月19-21日,2024云栖大会在杭州云栖小镇举行,阿里云智能集团资深技术专家、异构计算产品技术负责人王超等多位产品、技术专家,共同带来了题为《AI Infra的前沿技术与应用实践》的专场session。本次专场重点介绍了阿里云AI Infra 产品架构与技术能力,及用户如何使用阿里云灵骏产品进行AI大模型开发、训练和应用。围绕当下大模型训练和推理的技术难点,专家们分享了如何在阿里云上实现稳定、高效、经济的大模型训练,并通过多个客户案例展示了云上大模型训练的显著优势。
|
18天前
|
存储 人工智能 调度
阿里云吴结生:高性能计算持续创新,响应数据+AI时代的多元化负载需求
在数字化转型的大潮中,每家公司都在积极探索如何利用数据驱动业务增长,而AI技术的快速发展更是加速了这一进程。
|
9天前
|
并行计算 前端开发 物联网
全网首发!真·从0到1!万字长文带你入门Qwen2.5-Coder——介绍、体验、本地部署及简单微调
2024年11月12日,阿里云通义大模型团队正式开源通义千问代码模型全系列,包括6款Qwen2.5-Coder模型,每个规模包含Base和Instruct两个版本。其中32B尺寸的旗舰代码模型在多项基准评测中取得开源最佳成绩,成为全球最强开源代码模型,多项关键能力超越GPT-4o。Qwen2.5-Coder具备强大、多样和实用等优点,通过持续训练,结合源代码、文本代码混合数据及合成数据,显著提升了代码生成、推理和修复等核心任务的性能。此外,该模型还支持多种编程语言,并在人类偏好对齐方面表现出色。本文为周周的奇妙编程原创,阿里云社区首发,未经同意不得转载。
|
14天前
|
人工智能 运维 双11
2024阿里云双十一云资源购买指南(纯客观,无广)
2024年双十一,阿里云推出多项重磅优惠,特别针对新迁入云的企业和初创公司提供丰厚补贴。其中,36元一年的轻量应用服务器、1.95元/小时的16核60GB A10卡以及1元购域名等产品尤为值得关注。这些产品不仅价格亲民,还提供了丰富的功能和服务,非常适合个人开发者、学生及中小企业快速上手和部署应用。
|
21天前
|
缓存 监控 Linux
Python 实时获取Linux服务器信息
Python 实时获取Linux服务器信息
|
4天前
|
云安全 存储 弹性计算
|
6天前
|
云安全 人工智能 自然语言处理
|
9天前
|
人工智能 自然语言处理 前端开发
用通义灵码,从 0 开始打造一个完整APP,无需编程经验就可以完成
通义灵码携手科技博主@玺哥超carry 打造全网第一个完整的、面向普通人的自然语言编程教程。完全使用 AI,再配合简单易懂的方法,只要你会打字,就能真正做出一个完整的应用。本教程完全免费,而且为大家准备了 100 个降噪蓝牙耳机,送给前 100 个完成的粉丝。获奖的方式非常简单,只要你跟着教程完成第一课的内容就能获得。
|
25天前
|
自然语言处理 数据可视化 前端开发
从数据提取到管理:合合信息的智能文档处理全方位解析【合合信息智能文档处理百宝箱】
合合信息的智能文档处理“百宝箱”涵盖文档解析、向量化模型、测评工具等,解决了复杂文档解析、大模型问答幻觉、文档解析效果评估、知识库搭建、多语言文档翻译等问题。通过可视化解析工具 TextIn ParseX、向量化模型 acge-embedding 和文档解析测评工具 markdown_tester,百宝箱提升了文档处理的效率和精确度,适用于多种文档格式和语言环境,助力企业实现高效的信息管理和业务支持。
3984 5
从数据提取到管理:合合信息的智能文档处理全方位解析【合合信息智能文档处理百宝箱】
|
3天前
|
人工智能 C++ iOS开发
ollama + qwen2.5-coder + VS Code + Continue 实现本地AI 辅助写代码
本文介绍在Apple M4 MacOS环境下搭建Ollama和qwen2.5-coder模型的过程。首先通过官网或Brew安装Ollama,然后下载qwen2.5-coder模型,可通过终端命令`ollama run qwen2.5-coder`启动模型进行测试。最后,在VS Code中安装Continue插件,并配置qwen2.5-coder模型用于代码开发辅助。
280 4