[算法] C#与数据结构--二叉树的遍历
二叉树的存储结构二叉树的存储可分为两种:顺序存储结构和链式存储结构。
1. 顺序存储结构
把一个满二叉树自上而下、从左到右顺序编号,依次存放在数组内,可得到图6.8(a)所示的结果。设满二叉树结点在数组中的索引号为i,那么有如下性质。
(1)如果i = 0,此结点为根结点,无双亲。
(2)如果i > 0,则其双亲结点为(i -1) / 2 。(注意,这里的除法是整除,结果中的小数部分会被舍弃。)
(3)结点i的左孩子为2i + 1,右孩子为2i + 2。
(4)如果i > 0,当i为奇数时,它是双亲结点的左孩子,它的兄弟为i + 1;当i为偶数时,它是双新结点的右孩子,它的兄弟结点为i – 1。
(5)深度为k的满二叉树需要长度为2 k-1的数组进行存储。
通过以上性质可知,使用数组存放满二叉树的各结点非常方便,可以根据一个结点的索引号很容易地推算出它的双亲、孩子、兄弟等结点的编号,从而对这些结点进行访问,这是一种存储二叉满二叉树或完全二叉树的最简单、最省空间的做法。
为了用结点在数组中的位置反映出结点之间的逻辑关系,存储一般二叉树时,只需要将数组中空结点所对应的位置设为空即可,其效果如图6.8(b)所示。这会造成一定的空间浪费,但如果空结点的数量不是很多,这些浪费可以忽略。
一个深度为k的二叉树需要2 k-1个存储空间,当k值很大并且二叉树的空结点很多时,最坏的情况是每层只有一个结点,再使用顺序存储结构来存储显然会造成极大地浪费,这时就应该使用链式存储结构来存储二叉树中的数据。
http://img.ddvip.com/2008_10_24/1224834324_ddvip_2789.jpg
1. 链式存储结构
二叉树的链式存储结构可分为二叉链表和三叉链表。二叉链表中,每个结点除了存储本身的数据外,还应该设置两个指针域left和right,它们分别指向左孩子和右孩子(如图6.9(a)所示)。
当需要在二叉树中经常寻找某结点的双亲,每个结点还可以加一个指向双亲的指针域parent,如图6.9(b)所示,这就是三叉链表。
http://img.ddvip.com/2008_10_24/1224834325_ddvip_2275.jpg
图6.10所示的是二叉链表和三叉链表的存储结构,其中虚线箭头表示parent指针所指方向。
http://img.ddvip.com/2008_10_24/1224834325_ddvip_4467.jpg
二叉树还有一种叫双亲链表的存储结构,它只存储结点的双亲信息而不存储孩子信息,由于二叉树是一种有序树,一个结点的两个孩子有左右之分,因此结点中除了存放双新信息外,还必须指明这个结点是左孩子还是右孩子。由于结点不存放孩子信息,无法通过头指针出发遍历所有结点,因此需要借助数组来存放结点信息。图6.10(a)所示的二叉树使用双亲链表进行存储将得到图6.11所示的结果。由于根节点没有双新,所以它的parent指针的值设为-1。
http://img.ddvip.com/2008_10_24/1224834326_ddvip_1216.jpg
双亲链表中元素存放的顺序是根据结点的添加顺序来决定的,也就是说把各个元素的存放位置进行调换不会影响结点的逻辑结构。由图6.11可知,双亲链表在物理上是一种顺序存储结构。
二叉树存在多种存储结构,选用何种方法进行存储主要依赖于对二叉树进行什么操作来确定。而二叉链表是二叉树最常用的存储结构,下面几节给出的有关二叉树的算法大多基于二叉链表存储结构。
6.3 二叉树的遍历
二叉树遍历(Traversal)就是按某种顺序对树中每个结点访问且只能访问一次的过程。访问的含义很广,如查询、计算、修改、输出结点的值。树遍历本质上是将非线性结构线性化,它是二叉树各种运算和操作的实现基础,需要高度重视。
6.3.1二叉树的深度优先遍历
图6.12二叉树的递归定义
D
L
R
我们是用递归的方法来定义二叉树的。每棵二叉树由结点、左子树、右子树这三个基本部分组成,如果遍历了这三部分,也就遍历了整个二叉树。如图6.12所示,D为二叉树中某一结点,L、R分别为结点D的左、右子树,则其遍历方式有6种:
http://img.ddvip.com/2008_10_24/1224834326_ddvip_5640.jpg
先左后右 先右后左
先序 DLR DRL
中序 LDR RDL
后序 LRD RLD
这里只讨论先左后右的三种遍历算法。
如图6.13所示,在沿着箭头方向所指的路径对二叉树进行遍历时,每个节点会在这条搜索路径上会出现三次,而访问操作只能进行一次,这时就需要决定在搜索路径上第几次出现的结点进行访问操作,由此就引出了三种不同的遍历算法。
http://img.ddvip.com/2008_10_24/1224834326_ddvip_9503.jpg
1. 先序遍历
若二叉树为非空,则过程为:
(1)访问根节点。
(2)先序遍历左子树。
(3)先序遍历右子树。
图6.13中,先序遍历就是把标号为(1)的结点按搜索路径访问的先后次序连接起来,得出结果为:ABDECF。
2. 中序遍历
若二叉树为非空,则过程为:
(1)按中序遍历左子树。
(2)访问根结点。
(3)按中序遍历右子树。
图6.13中,先序遍历就是把标号为(2)的结点按搜索路径访问的先后次序连接起来,得出结果为:DBEACF。
3. 后序遍历
若二叉树为非空,则过程为:
(1)按后序遍历左子树。
(2)按后序遍历右子树
(3)访问根结点。
图6.13中,先序遍历就是把标号为(3)的结点按搜索路径访问的先后次序连接起来,得出结果为:DEBFCA。
【例6-1BinaryTreeNode.cs】二叉树结点类
<span style="color: rgb(51, 51, 51); font-family: Arial; ">1usingSystem;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">2publicclassNode</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">3{</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">4 //成员变量</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">5 privateobject_data;//数据</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">6 privateNode_left;//左孩子</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">7 privateNode_right;//右孩子</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">8 publicobjectData</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">9 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">10 get{return_data;}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">11 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">12 publicNodeLeft//左孩子</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">13 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">14 get{return_left;}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">15 set{_left=value;}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">16 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">17 publicNodeRight//右孩子</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">18 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">19 get{return_right;}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">20 set{_right=value;}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">21 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">22 //构造方法</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">23 publicNode(objectdata)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">24 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">25 _data=data;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">26 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">27 publicoverridestringToString()</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">28 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">29 return_data.ToString();</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">30 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">31}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">32</span> Node类专门用于表示二叉树中的一个结点,它很简单,只有三个属性:Data表示结点中的数据;Left表示这个结点的左孩子,它是Node类型;Right表示这个结点的右孩子,它也是Node类型。
【例6-1BinaryTree.cs】二叉树集合类
<span style="color: rgb(51, 51, 51); font-family: Arial; ">1usingSystem;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">2publicclassBinaryTree</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">3{ //成员变量</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">4 privateNode_head;//头指针</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">5 privatestringcStr;//用于构造二叉树的字符串</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">6 publicNodeHead//头指针</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">7 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">8 get{return_head;}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">9 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">10 //构造方法</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">11 publicBinaryTree(stringconstructStr)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">12 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">13 cStr=constructStr;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">14 _head=newNode(cStr);//添加头结点</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">15 Add(_head,0);//给头结点添加孩子结点</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">16 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">17 privatevoidAdd(Nodeparent,intindex)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">18 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">19 intleftIndex=2*index+1;//计算左孩子索引</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">20 if(leftIndex<cStr.Length)//如果索引没超过字符串长度</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">21 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">22 if(cStr!='#')//'#'表示空结点</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">23 { //添加左孩子</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">24 parent.Left=newNode(cStr);</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">25 //递归调用Add方法给左孩子添加孩子节点</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">26 Add(parent.Left,leftIndex);</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">27 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">28 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">29 intrightIndex=2*index+2;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">30 if(rightIndex<cStr.Length)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">31 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">32 if(cStr!='#')</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">33 { //添加右孩子</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">34 parent.Right=newNode(cStr);</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">35 //递归调用Add方法给右孩子添加孩子节点</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">36 Add(parent.Right,rightIndex);</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">37 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">38 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">39 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">40 publicvoidPreOrder(Nodenode)//先序遍历</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">41 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">42 if(node!=null)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">43 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">44 Console.Write(node.ToString());//打印字符</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">45 PreOrder(node.Left);//递归</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">46 PreOrder(node.Right);//递归</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">47 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">48 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">49 publicvoidMidOrder(Nodenode)//中序遍历</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">50 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">51 if(node!=null)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">52 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">53 MidOrder(node.Left);//递归</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">54 Console.Write(node.ToString());//打印字符</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">55 MidOrder(node.Right);//递归</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">56 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">57 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">58 publicvoidAfterOrder(Nodenode)//后继遍历</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">59 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">60 if(node!=null)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">61 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">62 AfterOrder(node.Left);//递归</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">63 AfterOrder(node.Right);//递归</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">64 Console.Write(node.ToString());//打印字符</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">65 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">66 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">67}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">68</span> BinaryTree是一个二叉树的集合类,它属于二叉链表,实际存储的信息只有一个头结点指针(Head),由于是链式存储结构,可以由Head指针出发遍历整个二叉树。为了便于测试及添加结点,假设BinaryTree类中存放的数据是字符类型,第5行声明了一个字符串类型成员cStr,它用于存放结点中所有的字符。字符串由满二叉树的方式进行构造,空结点用‘#’号表示(参考本章“二叉树存储结构”这一小节中的“顺序存储结构”)。图6.13所示的二叉树可表示为:“ABCDE#F”。
11~16行的构造方法传入一个构造字符串,并在Add()方法中根据这个字符串来构造二叉树中相应的结点。需要注意,这个构造方法只用于测试。
17~39行的Add()方法用于添加结点,它的第一个参数parent表示需要添加孩子结点的双亲结点,第二个参数index表示这个双亲结点的编号(编号表示使用顺序存储结构时它在数组中的索引,请参考本章“二叉树存储结构”这一小节中的“顺序存储结构”)。添加孩子结点的方法是先计算孩子结点的编号,然后通过这个编号在cStr中取出相应的字符,并构造新的孩子结点用于存放这个字符,接下来递归调用Add()方法给孩子结点添加它们的孩子结点。注意,这个方法只用于测试。
40~48行代码的PreOrder()方法用于先序遍历,它的代码跟之前所讲解的先序遍历过程完全一样。
49~57行代码的MidOrder()方法用于中序遍历。
58~66行代码的AfterOrder()方法用于后序遍历。
以上三个方法都使用了递归来完成遍历,这符合二叉树的定义。
【例6-1Demo6-1.cs】二叉树深度优先遍历测试
<span style="color: rgb(51, 51, 51); font-family: Arial; ">1usingSystem;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">2classDemo6_1</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">3{</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">4 staticvoidMain(string[]args)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">5 { //使用字符串构造二叉树</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">6 BinaryTreebTree=newBinaryTree("ABCDE#F");</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">7 bTree.PreOrder(bTree.Head);//先序遍</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">8 Console.WriteLine();</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">9 bTree.MidOrder(bTree.Head);//中序遍</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">10 Console.WriteLine();</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">11 bTree.AfterOrder(bTree.Head);//后序遍</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">12 Console.WriteLine();</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">13 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">14}</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">15</span> 运行结果:
ABDECF
DBEACF
DEBFCA
6.3.2二叉树的宽度优先遍历
之前所讲述的二叉树的深度优先遍历的搜索路径是首先搜索一个结点的所有子孙结点,再搜索这个结点的兄弟结点。是否可以先搜索所有兄弟和堂兄弟结点再搜索子孙结点呢?
由于二叉树结点分属不同的层次,因此可以从上到下、从左到右依次按层访问每个结点。它的访问顺序正好和之前所述二叉树顺序存储结构中的结点在数组中的存放顺序相吻合。如图6.13中的二叉树使用宽度优先遍历访问的顺序为:ABCDEF。
这个搜索过程不再需要使用递归,但需要借助队列来完成。
(1)将根结点压入队列之中,开始执行步骤(2)。
(2)若队列为空,则结束遍历操作,否则取队头结点D。
(3)若结点D的左孩子结点存在,则将其左孩子结点压入队列。
(4)若结点D的右孩子结点存在,则将其右孩子结点压入队列,并重复步骤(2)。
【例6-2BinaryTreeNode.cs.cs】二叉树结点类,使用例6-1同名文件。
【例6-2LevelOrderBinaryTree.cs】包含宽度优先遍历方法的二叉树集合类
打开例6-1的【BinaryTree.cs】文件,在BinaryTree类中添加如入方法后另存为LevelOrderBinaryTree.cs文件。
<span style="color: rgb(51, 51, 51); font-family: Arial; ">1 publicvoidLevelOrder()//宽度优先遍历</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">2 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">3 Queuequeue=newQueue();//声明一个队例</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">4 queue.Enqueue(_head);//把根结点压入队列</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">5 while(queue.Count>0)//只要队列不为空</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">6 {</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">7 Nodenode=(Node)queue.Dequeue();//出队</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">8 Console.Write(node.ToString());//访问结点</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">9 if(node.Left!=null)//如果结点左孩子不为空</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">10 { //把左孩子压入队列</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">11 queue.Enqueue(node.Left);</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">12 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">13 if(node.Right!=null)//如果结点右孩子不为熔</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">14 { //把右孩子压入队列</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">15 queue.Enqueue(node.Right);</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">16 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">17 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">18 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; "> 【例6-2Demo6-2.cs】二叉树宽度优先遍历测试</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">1usingSystem;</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">2classDemo6_2</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">3{</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">4 staticvoidMain(string[]args)</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">5 { //使用字符串构造二叉树</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">6 BinaryTreebTree=newBinaryTree("ABCDE#F");</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">7 bTree.LevelOrder();</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">8 }</span>
<span style="color: rgb(51, 51, 51); font-family: Arial; ">9}</span> (*^__^*) 嘻嘻……
页:
[1]