中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

二叉樹的創建以及遞歸與非遞歸遍歷

發布時間:2020-07-27 16:54:27 來源:網絡 閱讀:631 作者:LHSTS 欄目:編程語言

二叉樹先序遍歷;(1)先序訪問根節點  (2)先序訪問左子樹 (3)先序訪問右子樹

二叉樹中序遍歷;(1)中序訪問根節點  (2)中序訪問左子樹 (3)中序訪問右子樹

二叉樹后序遍歷;(1)后序訪問根節點  (2)后序訪問左子樹 (3)后序訪問右子樹

測試用例:int a[10]={'1','2','3','#','#','4','#','#','5','6'}

二叉樹的創建以及遞歸與非遞歸遍歷

代碼:

#include<iostream>
using namespace std;
#include<queue>
#include<stack>
template<class T>
struct BinaryTreeNode
{
    BinaryTreeNode<T>* _left;
    BinaryTreeNode<T>* _right;
    T _data;
    BinaryTreeNode(const T& d)
        :_left(NULL)
        ,_right(NULL)
        ,_data(d)
    {}
};
template<class T>
class BinaryTree
{
public:
    BinaryTree()
        :_root(NULL)
    {}
    BinaryTree(const T* a,size_t size,const T& invalid)
    {
        size_t index = 0;
        _root = _Create(a,size,index,invalid);
    }
    //BinaryTree(const BinaryTree<T>& d)
    //{
    //    BinaryTreeNode<T> root = NULL;

    //}
    BinaryTree<T>& operator = (const BinaryTree<T>& d)
    {
        swap(root,d._root );
    }
    void PrevOrder()
    {
       _PrevOrder(_root);
    }
    void InOrder()
    {
       _InOrder(_root);
    }
    size_t Size()
    {
        _Size(_root);
    }
    size_t Depth()
    {
        return _Depth(_root);
    }
    size_t LeafSize()
    {
        return _LeafSize( _root);
    }
    void LevelOrder()
   {
        _LeavelOrder();
   }
    void PrevOrder_NonR()
    {
        _PrevOrder_NonR();
    }
    void InOrder_NonR()
    {
        _InOrer_NonR();
    }
    void PostOrder_NonR()
    {
        _PostOrder_NonR();
    }
public:

protected:
   BinaryTreeNode<T>* _Create(const T*a,size_t size,size_t& index,const T& invalid)
   {
       BinaryTreeNode<T> *root = NULL;
       while(index<size && a[index] != invalid)
       {
           root = new BinaryTreeNode<T> (a[index]);
           root->_left = _Create(a,size,++index,invalid);
           root->_right = _Create(a,size,++index,invalid);
       }
       return root;
   }
   void _PrevOrder(BinaryTreeNode<T>* root)
   {
       if(root == NULL)
       {
            return;
       }
       cout<<root->_data<<" " ;
       _PrevOrder(root->_left );
       _PrevOrder(root->_right);
   }
   void _InOrder(BinaryTreeNode<T>* root)
   {    
        if(root == NULL)
        {
            return;
        }
        _InOrder (root->_left );
        cout<<root->_data<<" " ;
        _InOrder (root->_right );
   }
   size_t _size(BinaryTreeNode<T>* root)
   {
        if(root == NULL)
        {
            return 0;
        }
        return _Size(root->_left )+_Size(root->_right )+1;
   }
   size_t _Depth(BinaryTreeNode<T>* root)
   {
      if(root == NULL)
      {
        return 0;
      }
      int left = _Depth(root->_left )+1;
      int right = _Depth (root->_right )+1;
      return (left>right?left:right);
   }
   size_t _LeafSize(BinaryTreeNode<T>* root)
   {
        if(root == NULL)
        {
            return 0;
        }
        if(root->_left == NULL && (root->_right == NULL))
        {
            return 1;
        }
        return _LeafSize(root->_left)+_LeafSize (root->_right);
   }

    void _LeavelOrder()
    {
        queue<BinaryTreeNode<T>*>q;
        if(_root)
        {
            q.push(_root);
        }
        while(!q.empty())
        {
            BinaryTreeNode<T>* front = q.front();
            cout<<front._data<<" ";
            if(_root->_left)
            {
                q.push(_root->_left);
            }
            if(_root->_right)
            {
                q.push(_root->_right);
            }
            q.pop();
        }
        cout<<endl;
    }
    void _PrevOrder_NonR()
    {
        stack<BinaryTreeNode<T>*>s;
        BinaryTreeNode<T>* cur = _root;
        while(cur||!s.empty())
        {
            
            while(cur )
            {
                cout<<cur->_data <<" "; 
                s.push(cur);
                cur = cur->_left ;
            }
            if(!s.empty())
            {
                BinaryTreeNode<T>* top = s.top();
                cur = top->_right ;
                s.pop();
            }            
        }
    }
    void _InOrer_NonR()
    {
        stack<BinaryTreeNode<T>*> s;
        BinaryTreeNode<T>* cur = _root;
        while(cur||!s.empty())
        {
            while(cur)
            {
               s.push(cur);
               cur = cur->_left ;
            }
            BinaryTreeNode<T>* Top = s.top();
            cout<<Top->_data<<" ";            
            cur = Top->_right ;
            s.pop();
        }
        cout<<endl;
    }

    void _PostOrder_NonR()
    {
        BinaryTreeNode<T>* cur = _root;
        stack<BinaryTreeNode<T>*>s; 
        BinaryTreeNode<T>* prev = NULL;
        while(cur||!s.empty())
        {
            while(cur)
            {
                s.push(cur);
                cur = cur->_left ;
            }
            BinaryTreeNode<T>* top = s.top();
            if(top->_right == NULL||top->_right == prev)
            {
                cout<<top->_data <<" ";
                s.pop();
                prev = top;
            }
            else
            cur = top->_right ;
            //cout<<endl;
        }
    }
protected:
    BinaryTreeNode<T>* _root;
};
int main()
{
    int a1[10] = {1,2,3,'#','#',4,'#','#',5,6};
    BinaryTree<int>  b1(a1,10,'#');
    //b1.InOrder();
    //b1.InOrder_NonR ();
    //b1.Depth();
    //b1.PrevOrder_NonR();
    b1.PostOrder_NonR();
    system("pause");
    return 0;
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大余县| 吴川市| 林口县| 丹凤县| 金塔县| 德安县| 固阳县| 墨玉县| 宜川县| 二手房| 甘洛县| 刚察县| 宜丰县| 旬阳县| 武汉市| 承德县| 石台县| 揭西县| 江西省| 化州市| 宁海县| 东港市| 唐河县| 云阳县| 翁源县| 灯塔市| 资讯| 甘德县| 清丰县| 南宫市| 来宾市| 嘉鱼县| 大庆市| 兴仁县| 黎川县| 积石山| 白山市| 博白县| 房山区| 蚌埠市| 南华县|