二叉树是一种非线性结构,在之前实现的二叉树遍历中不管是递归还是非递归用二叉树作为存储结构时只能取到该结点的左孩子和右孩子,不能得到该结点的前驱和后继。为了保存这种在遍历中需要的信息,同时也为了充分利用结点中的空指针域,我们利用二叉树中指向左右子树的空指针来存放结点的前驱和后继.同时在有n个结点的二叉链表中必定存在n+1个空链域.
那仫问题来了如何充分的利用这些空链域来实现线索化呢?
假设做如下规定:若结点有左子树则其左孩子域指向该结点的左孩子,否则另左孩子指向其前驱;若结点有右子树则其右孩子域指向该结点的右孩子,否则另右孩子域指向其后继.为了实现这种构想我们需要增加两个标志域_leftTag,_rightTag.
一.线索化及中序遍历一棵树
要线索化一颗二叉树,最重要的就是在访问了当前结点并确定当前结点的左孩子域或者右孩子域为空后如何找到当前结点的前一个结点也就是它的前驱,和当前结点的后继.在这里我们用到了一个_prev指针用来保存你访问结点的前一个结点--如果当前结点的左子树域为空则使当前结点的左孩子域指向_prev所指向的结点也就是当前结点的前驱;我们知道中序是按照左-根-右的顺序遍历的,如果当前结点的左访问过了,根也访问过了按照中序遍历的顺序接下来就应该访问右了-_prev指针指向的是当前结点的前一个结点要访问右则只需判断_prev的右孩子域是否为空就可以了,如果为空则使_prev的右孩子域指向它的后继.
[cpp] view plain copy
- void _InOrderThread(Node *root)
- {
- if(root == NULL)
- return ;
- //左子树
- _InOrderThread(root->_left);
- //根
- if (root->_left == NULL)
- {
- root->_leftTag=THREAD;
- root->_left=_prev;
- }
- if (_prev && _prev->_right == NULL)
- {
- _prev->_rightTag=THREAD;
- _prev->_right=root;
- }
- _prev=root;
- //右子树
- _InOrderThread(root->_right);
- }
中序线索化一颗二叉树后如何遍历呢?和之前非递归的方法类似,使得cur指针指向该树的左路结点,如果该结点有右子树则访问右子树,如果没有右子树则继续修改cur的值,使其指向当前结点的后继.
[cpp] view plain copy
- void _InOrder(Node *root)
- {
- if(root == NULL)
- return ;
- Node *cur=root;
- while (cur)
- {
- //一路向左找到最左的结点.
- while (cur->_leftTag == LINK)
- {
- cur=cur->_left;
- }
- cout<<cur->_data<<" ";
- //有后继
- while (cur && cur->_rightTag == THREAD)
- {
- cur=cur->_right;
- cout<<cur->_data<<" ";
- }
- //没有后继有右子树
- cur=cur->_right;
- }
- }
二.线索化及前序遍历一棵树>
前序遍历的线索化类似中序遍历的线索化,但是因为前序的顺序是根-左-右,会因为递归太深导致栈溢出的问题,所以在递归线索化左子树和右子树的时候需要判断当前结点的左右标志是否为LINK类型-是才递归线索化左子树和右子树.
[cpp] view plain copy
- void _PrevOrderThread(Node *root)
- {
- if(root == NULL)
- return ;
- if (root->_left == NULL)
- {
- root->_leftTag=THREAD;
- root->_left=_prev;
- }
- if (_prev && _prev->_right == NULL)
- {
- _prev->_rightTag=THREAD;
- _prev->_right=root;
- }
- _prev=root;
- if(root->_leftTag == LINK) //防止栈溢出
- _PrevOrderThread(root->_left);
- if(root->_rightTag == LINK)
- _PrevOrderThread(root->_right);
- }
[cpp] view plain copy
- void _PrevOrder(Node *root)
- {
- if(root == NULL)
- return ;
- Node *cur=root;
- while (cur)
- {
- while (cur && cur->_leftTag == LINK)
- {
- cout<<cur->_data<<" ";
- cur=cur->_left;
- }
- cout<<cur->_data<<" ";
- //将该树的后继当成子树来访问
- cur=cur->_right;
- //while (cur && cur->_rightTag == THREAD)
- //{
- // cur=cur->_right;
- // cout<<cur->_data<<" ";
- //}
- //cur=cur->_right;
- }
- }
三.线索化及后序遍历一棵树>
在后序线索树中找一个结点的前驱很容易直接用_prev就可以找到,那仫如何找一个结点的后继呢?这时就比较棘手了
也就是说,在后序线索化树上找后继时需要知道结点双亲,此时我们可以使用三叉链表做存储结构找到其双亲结点,其实还有一种思路就是逆向思维的方式----我们知道在后序遍历线索二叉树时有的时候是不容易找到一个结点的后继的,如果我们按照根-右-左的顺序逆序遍历一颗线索二叉树就会变的非常简单了.
在实现中我只实现第二种思路即倒着访问一颗后序线索化的二叉树.
程序源代码>
BinaryTreeThd.h
[cpp] view plain copy
- #pragma once
- enum PointerTag
- {
- THREAD, //0:线索
- LINK //1:指针
- };
- template<typename T>
- struct BinaryTreeThdNode
- {
- BinaryTreeThdNode(const T& x=T())
- :_data(x)
- ,_left(NULL)
- ,_right(NULL)
- ,_leftTag(LINK)
- ,_rightTag(LINK)
- {}
- T _data;
- BinaryTreeThdNode<T> *_left;
- BinaryTreeThdNode<T> *_right;
- PointerTag _leftTag; //左孩子线索化标志
- PointerTag _rightTag; //右孩子线索化标志
- };
- template<typename T>
- class BinaryTreeThd
- {
- typedef BinaryTreeThdNode<T> Node;
- public:
- BinaryTreeThd(const T *a,size_t size,const T& invalid)
- :_root(NULL)
- ,_prev(NULL)
- {
- size_t index=0;
- _root=_CreatTreeThd(a,size,index,invalid);
- }
- public:
- void PrevOrderThread() //前序线索化二叉树
- {
- _PrevOrderThread(_root);
- }
- void PrevOrder() //前序遍历二叉树
- {
- _PrevOrder(_root);
- cout<<endl;
- }
- void InOrderThread() //中序线索化二叉树
- {
- _InOrderThread(_root);
- }
- void InOrder() //中序遍历二叉树
- {
- _InOrder(_root);
- cout<<endl;
- }
- void PostOrderThread() //后序线索化二叉树
- {
- _PostOrderThread(_root);
- }
- void PostOrder()
- {
- _PostOrder(_root);
- cout<<endl;
- }
- protected:
- Node *_CreatTreeThd(const T *a,size_t size,size_t& index,const T& invalid)
- {
- assert(a);
- Node *root=NULL;
- if (index < size && a[index] != invalid)
- {
- root=new Node(a[index]);
- root->_left=_CreatTreeThd(a,size,++index,invalid);
- root->_right=_CreatTreeThd(a,size,++index,invalid);
- }
- return root;
- }
- protected:
- void _PrevOrderThread(Node *root)
- {
- if(root == NULL)
- return ;
- if (root->_left == NULL)
- {
- root->_leftTag=THREAD;
- root->_left=_prev;
- }
- if (_prev && _prev->_right == NULL)
- {
- _prev->_rightTag=THREAD;
- _prev->_right=root;
- }
- _prev=root;
- if(root->_leftTag == LINK) //防止栈溢出
- _PrevOrderThread(root->_left);
- if(root->_rightTag == LINK)
- _PrevOrderThread(root->_right);
- }
- void _InOrderThread(Node *root)
- {
- if(root == NULL)
- return ;
- //左子树
- _InOrderThread(root->_left);
- //根
- if (root->_left == NULL)
- {
- root->_leftTag=THREAD;
- root->_left=_prev;
- }
- if (_prev && _prev->_right == NULL)
- {
- _prev->_rightTag=THREAD;
- _prev->_right=root;
- }
- _prev=root;
- //右子树
- _InOrderThread(root->_right);
- }
- void _PostOrderThread(Node *root)
- {
- if(root == NULL)
- return ;
- _PostOrderThread(root->_left);
- _PostOrderThread(root->_right);
- if (root->_left == NULL)
- {
- root->_leftTag=THREAD;
- root->_left=_prev;
- }
- if (_prev && _prev->_right == NULL)
- {
- _prev->_rightTag=THREAD;
- _prev->_right=root;
- }
- _prev=root;
- }
- void _PrevOrder(Node *root)
- {
- if(root == NULL)
- return ;
- Node *cur=root;
- while (cur)
- {
- while (cur && cur->_leftTag == LINK)
- {
- cout<<cur->_data<<" ";
- cur=cur->_left;
- }
- cout<<cur->_data<<" ";
- //将该树的后继当成子树来访问
- cur=cur->_right;
- //while (cur && cur->_rightTag == THREAD)
- //{
- // cur=cur->_right;
- // cout<<cur->_data<<" ";
- //}
- //cur=cur->_right;
- }
- }
- void _InOrder(Node *root)
- {
- if(root == NULL)
- return ;
- Node *cur=root;
- while (cur)
- {
- //一路向左找到最左的结点.
- while (cur && cur->_leftTag == LINK)
- {
- cur=cur->_left;
- }
- cout<<cur->_data<<" ";
- //有后继
- while (cur && cur->_rightTag == THREAD)
- {
- cur=cur->_right;
- cout<<cur->_data<<" ";
- }
- //没有后继有右子树
- cur=cur->_right;
- }
- }
- //倒着遍历后序线索化二叉树
- //根-右-左
- void _PostOrder(Node *root)
- {
- if(root == NULL)
- return ;
- Node *cur=root;
- while (cur)
- {
- while (cur && cur->_rightTag == LINK)
- {
- cout<<cur->_data<<" ";
- cur=cur->_right;
- }
- cout<<cur->_data<<" ";
- //有前驱
- while (cur->_left && cur->_leftTag == THREAD)
- {
- cur=cur->_left;
- cout<<cur->_data<<" ";
- }
- //有左子树
- cur=cur->_left;
- }
- }
- protected:
- Node *_root;
- Node *_prev; //保存当前结点的前一个结点
- };
test.cpp
[cpp] view plain copy
- void testBinaryTreeThd()
- {
- int array[15] = {1,2,'#',3,'#','#',4,5,'#',6,'#',7,'#','#',8};
- size_t size=sizeof(array)/sizeof(array[0]);
- BinaryTreeThd<int> bt1(array,size,'#');
- cout<<"线索化中序遍历>";
- bt1.InOrderThread();
- bt1.InOrder(); //3 2 1 5 6 7 4 8
- BinaryTreeThd<int> bt2(array,size,'#');
- cout<<"线索化前序遍历>";
- bt2.PrevOrderThread();
- bt2.PrevOrder(); //1 2 3 4 5 6 7 8
- BinaryTreeThd<int> bt3(array,size,'#');
- cout<<"线索化后序遍历>";
- bt3.PostOrderThread();
- bt3.PostOrder(); //1 4 8 5 6 7 2 3
- }
来源:CSDN
作者:zhupengqq1
链接:https://blog.csdn.net/zhupengqq1/article/details/104041130