二叉树实现

1.层次遍历可以用于寻找叶子节点,寻找路径,寻找树的最短最大高度的非递归实现。
2.中序遍历搜索二叉树后是升序的序列。这个特性可以判断搜索二叉树的有效性。
3.使用双向的递归可以遍历每个分支的每个节点。

/*
 * Created by krislyy on 2018/11/23.
 * 作为图的特殊形式,二叉树的基本组成单元是节点与边;
 * 作为数据结构,其基本的组成实体是二叉树节点,而边则
 * 对应于节点之间的相互引用
 */

#pragma once

#include<iostream>
#include<queue>
#include<stack>

using namespace std;

template <class T>  //树的结构体
struct BinaryTreeNode
{
public:
    T _data;
    BinaryTreeNode<T>* _leftChild;
    BinaryTreeNode<T>* _rightChild;

public:
    BinaryTreeNode(const T& data)
            :_data(data)
            , _leftChild(NULL)
            , _rightChild(NULL)
    {}

    ~BinaryTreeNode()
    {}
};

template <class T>
class BinaryTree //树的封装
{
public:
    BinaryTreeNode<T>* _root;

public:
    BinaryTree()
            :_root(NULL)
    {}

    BinaryTree( T*a, size_t size)
    {
        size_t index = 0;
        _root = _CreateBiTree(a, index, size);
    }

    BinaryTree(const BinaryTree& tmp)
            :_root(NULL)
    {
        _root=_Copy(tmp._root);

    }
    ~BinaryTree()
    {
        Destory();
    }

    BinaryTree<T>& operator=( BinaryTree<T> tmp)
    {
        swap(_root, tmp._root);
        return *this;

    }

    void InOrder()//中序遍历递归方法
    {
        _InOrder(_root);
        cout << endl;
    }

    void PreOrder()//前序遍历递归方法
    {
        _PreOrder(_root);
        cout << endl;
    }

    void PosOrder()//后序遍历递归方法
    {
        _PosOrder(_root);
        cout << endl;
    }

    void LevelOrder()//层序遍历
    {
        queue<BinaryTreeNode<T>*> s ;
        s.push(_root);
        while (!s.empty())
        {
            BinaryTreeNode<T>* cur = s.front();
            cout<<cur->_data<<' ';
            if (cur->_leftChild)
                s.push(cur->_leftChild);
            if (cur->_rightChild)
                s.push(cur->_rightChild);
            s.pop();
        }
        cout << endl;
    }

    void Size()//节点数
    {
        int size = 0;
        cout<<_Size(_root,size)<<endl;

    }

    void Hight()//深度  /高度
    {
        cout << _Hight(_root) << endl;
    }

    void Destory()//销毁
    {
        _Destory(_root);
        _root=NULL;
    }

    void LeafNum()//叶子节点数
    {
        int num = 0;
        _LeafNum(_root, num);
        cout <<num<<endl;

    }

    void PreOrderNonR()//前序 非递归  (借用栈)
    {
        if (_root == NULL)
            return;
        stack<BinaryTreeNode<T>*> s ;
        s.push(_root);
        while (!s.empty())
        {
            BinaryTreeNode<T>* cur;
            cur=s.top();
            s.pop();
            cout << cur->_data << ' ';
            if (cur->_rightChild)
                s.push(cur->_rightChild);
            if (cur->_leftChild)
                s.push(cur->_leftChild);
        }
        cout << endl;
    }

    void InOrderNonR() //中序 非递归
    {
        if (_root == NULL)
            return;
        stack<BinaryTreeNode<T>*> s;
        s.push(_root);
        BinaryTreeNode<T>* prev=NULL;
        BinaryTreeNode<T>* cur=NULL;
        while (!s.empty())
        {
            cur = s.top();
            if(prev != cur&&cur->_leftChild) //左不空 压左
            {
                s.push(cur->_leftChild);
            }
            else //左空   出栈 输出
            {
                cout << cur->_data << ' ';
                s.pop();
                if (!s.empty())
                    prev = s.top();//prev始终为出栈后的栈顶
                if (cur->_rightChild)//  cur右不空  压右
                {

                    s.push(cur->_rightChild);

                }
            }
        }
        cout << endl;
    }

    void PosOrderNonR()  //后续  非递归
    {
        if (_root == NULL)
            return;
        stack<BinaryTreeNode<T>*> s;
        BinaryTreeNode<T>* cur = NULL;
        BinaryTreeNode<T>* prev = NULL;
        BinaryTreeNode<T>* tmp = NULL;
        s.push(_root);
        while (!s.empty())
        {
            cur = s.top();
            if (prev != cur&&cur->_leftChild != NULL)//1.左不空且prev!=cur 压左
                s.push(cur->_leftChild);
            else//左空
            {
                if (cur->_rightChild!=tmp  &&cur->_rightChild)//右不空 且 cur->right!=tmp 压右
                {
                    s.push(cur->_rightChild);
                }

                else             //右空  输出 cur
                {
                    cout << cur->_data << ' ';
                    tmp = s.top();    //tmp(判断是否压右)始终为出栈前的栈顶
                    s.pop();
                    if (!s.empty())
                    {
                        prev = s.top();//prev(判断是否压右)始终为出栈后栈顶

                    }
                }
            }
        }
        cout << endl;
    }

protected://以下为递归的调用函数

    BinaryTreeNode<T>* _CreateBiTree(const T* tmp, size_t& index, size_t size)
    {
        BinaryTreeNode<T>* root = NULL;
        if (index < size&&tmp[index]!='#')
        {
            root = new BinaryTreeNode<T>(tmp[index]);
            root->_leftChild = _CreateBiTree(tmp, ++index, size);
            root->_rightChild = _CreateBiTree(tmp, ++index, size);
        }
        return root;
    }

    void _InOrder(BinaryTreeNode<T>* &node)
    {
        if (node == NULL)
            return;
        _InOrder(node->_leftChild);
        cout << node->_data << ' ';
        _InOrder(node->_rightChild);
    }

    void _PreOrder(BinaryTreeNode<T>* &node)
    {
        if (node == NULL)
            return;
        cout << node->_data<<' ';
        _PreOrder(node->_leftChild);
        _PreOrder(node->_rightChild);

    }

    void _PosOrder(BinaryTreeNode<T>* &node)
    {
        if (node == NULL)
            return;
        _PosOrder(node->_leftChild);
        _PosOrder(node->_rightChild);
        cout << node->_data << ' ';
    }

    int _Size(BinaryTreeNode<T>* root,int & size)
    {
        if (root == NULL)
            return 0;
        size++;
        _Size(root->_leftChild, size);
        _Size(root->_rightChild, size);
        return size;
    }

    int _Hight(BinaryTreeNode<T>* root)
    {
        int hight = 1;
        if (root == NULL)
            return 0;
        hight += _Hight(root->_leftChild);
        int ritHight = 0;
        ritHight+= _Hight(root->_rightChild);
        if (hight < ritHight)
            hight = ritHight;
        return hight;


    }
    void _Destory(BinaryTreeNode<T>* root)
    {
        if (root == NULL)
            return;
        BinaryTreeNode<T>* del = root;

        _Destory(del->_leftChild);
        _Destory(del->_rightChild);
        delete root;

        return;
    }

    void _LeafNum(BinaryTreeNode<T>* root,int& num)
    {
        if (root == NULL)
            return ;
        if (root->_leftChild == NULL&&root->_rightChild == NULL)
            ++num;
        _LeafNum(root->_leftChild,num);
        _LeafNum(root->_rightChild,num);
        return ;
    }

    BinaryTreeNode<T>* _Copy(BinaryTreeNode<T>* root)
    {
        if (root == NULL)
            return NULL;
        BinaryTreeNode<T>* newRoot = NULL;
        newRoot = new BinaryTreeNode<T>(root->_data);
        newRoot->_leftChild = _Copy(root->_leftChild);
        newRoot->_rightChild = _Copy(root->_rightChild);
        return newRoot;

    }
};

测试代码

void CheckBinaryTree(){
    int l[j] = { 1, 2, 3,'#', '#', 4, '#', '#', 5, 6 };
    int s[18] = { 1, 2, 3, 4, '#', '#', 5, '#', '#', 6,'#','#' ,7, 8, '#', '#', 9, 10 };
    BinaryTree<int> t1;
    BinaryTree<int> t2(s, 18);
    BinaryTree<int> t3(t2);
    t1 = t2;
    t2.PreOrder();
    t2.InOrder();
    t2.PosOrder();
    t2.LevelOrder();
    t2.Size();
    t2.Hight();
    t2.Destory();
    t3.InOrder();
    t1.InOrder();
    t3.LeafNum();
    t3.PreOrderNonR();
    t3.InOrderNonR();
    t3.PosOrderNonR();
}

构造后形成的树如下结构

                         1
                        /  \
                      2     7
                     / \   /  \
                   3    6  8   9
                  / \         /
                4    5       10

输出:

pre    : 1 2 3 4 5 6 7 8 9 10
in     :  4 3 5 2 6 1 8 7 10 9
post   : 4 5 3 6 2 8 10 9 7 1
level  : 1 2 7 3 6 8 9 4 5 10
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,076评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,658评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,732评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,493评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,591评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,598评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,601评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,348评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,797评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,114评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,278评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,953评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,585评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,202评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,180评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,139评论 2 352