您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 经营企划 > 数据结构第6章树与森林
世界观人人都有,而哲学只有经过系统的学习的人才能掌握它。世界观是自发成的,是不系统的、不自觉的、缺乏严密的逻辑和理论论证,而哲学则是把自发的、零散的、朴素的世界观加以理论化和系统化,因而具有严密的逻辑和完整的理论体系。appearanceoftheweldappearancequalitytechnicalrequirementsoftheprojectmustnothaveamoltenmetalstreamdoesnotmeltthebasemetaltoweld,weldseamandheat-affectedzonesurfacemustnothavecracks,pores,defectssuchascraterandash,surfacesmoothing,weldandbasemetalshouldbeevenlysmoothtransition.Width2-3mmfromtheedgeofweldGroove.Surfacereinforcementshouldbelessthanorequalto1+0.2timestheslopeedgewidth,andshouldnotbegreaterthan4mm.Depthofundercutshouldbelessthanorequalto0.5mm,totallengthoftheweldsonbothsidesundercutnotexceed10%oftheweldlength,andlongcontinuousshouldnotbegreaterthan100mm.Wrongsideshouldbelessthanorat0.2T,andshouldnotbegreaterthan2mm(wallthicknessmmt)incompleteornotallow7.57.5.1installationqualityprocessstandardsoftheelectricalenclosureCabinetsurfaceisclean,neat,nosignificantphenomenonofconvex,closetonature,closethedoor.7.5.2CabinetCabinetfacepaintsnopaint,returnedtorusted,consistentcolor.7.5.3uniformindirectgapfromtoptobottom,slotwidth1.5mm7.5.4adjacentCabinetsurfaceroughnessis0.7.5.5thecabinetsfirmlyfixed,craftsbeautiful.7.5.6Cabinetsurfacegauge,switchcabinetmarkclear,neat,firmpaste.7.5.7Terminalrowofneat,isreliable,theappearanceiscleanandnotdamaged.7.5.8cablesneatandclean,solidbinding,bindingprocessinappearance.7.5.9thefirstcableproductionfirm,craftsbeautiful,clearsignagedoesnotfade.7.5.10fireproofpluggingtight,nocracksandpores.7.67.6.1ofthestandardelectricalwiringqualitytechnologycablea,themulti-corewirebuncharrangementshouldbeparalleltoeachother,horizontalwireharnessorwireshouldbeperpendiculartothelongitudinalmulti-corewirebunch.Thedistancebetweenthewireharnessandwireharnesssymmetry,andascloseaspossible.B-corewiringharnessintoround,multi-corewirebunchusedgwirebinding,fastening第6章树与森林一、复习要点本章主要介绍了树与森林、二叉树的定义、性质、操作和相关算法的实现。特别是二叉树的遍历算法,它们与许多以此为基础的递归算法都必须认真学习。因为树的先根遍历次序与对应二叉树表示的前序遍历次序一致,树的后根遍历次序与对应二叉树的中序遍历次序一致,因此可以据此得出树的遍历算法。线索化二叉树是直接利用二叉链表的空链指针记入前驱和后继线索,从而简化二叉树的遍历。堆是一种二叉树的应用,可以用它作为优先级队列的实现。它的存储表示是完全二叉树的顺序存储方式,它的定义不要求堆中的数据有序,但要求双亲结点与子女结点必须满足某种关系。本章最后讨论霍夫曼树。这种树是扩充二叉树,要求在外结点上带有权值,在构造霍夫曼树时必须注意一个新结点的左子女上所带的权值小于右子女上所带的权值,这不是霍夫曼树必须这样,而是实现算法造成这种结果。此外,作为霍夫曼树的应用,引入霍夫曼编码。通常让霍夫曼树的左分支代表编码“0”,右分支代表编码“1”,得到霍夫曼编码。这是一种不等长编码,可以有效地实现数据压缩。本章复习的要点是:1、基本知识点要求理解树和森林的定义,树的抽象数据类型,二叉树的定义,二叉树的性质,二叉树的抽象数据类型,二叉树的数组表示和链表存储表示。要求掌握二叉树的遍历,包括中序遍历、前序遍历、后序遍历方法,要求理解二叉树的计数方法及从二叉树遍历结果得到二叉树的方法。对于线索化二叉树,要求理解什么是线索,中序线索化二叉树的结构特性及寻找某结点的前驱和后继的方法。此外,需要理解堆的定义及其实现的方法,本章只考虑用完全二叉树的顺序存储来实现。还需要理解堆的建立,插入与删除过程。要求掌握树/森林与二叉树的转换,树的遍历方法。最后要求掌握霍夫曼树的实现方法及霍夫曼编码的概念。2、算法设计建立二叉树的递归算法。前序、中序、后序遍历二叉树的递归算法。使用栈的前序、中序、后序遍历的非递归算法。统计二叉树结点个数,二叉树叶结点个数,二叉树高度的递归算法。自左向右链接二叉树叶结点的递归算法。判断两棵二叉树相等和交换二叉树左、右子女指针的递归算法。通过二叉树的遍历建立前序线索化二叉树和中序线索化二叉树的算法。中序线索化二叉树上的中序遍历算法。前序线索化二叉树上的前序遍历算法。后序线索化二叉树上的后序遍历算法。利用堆实现优先级队列的操作。堆的自上向下和自下向上的调整算法。堆的插入与删除算法。树的先根、后根、层次遍历算法(基于树的二叉树表示)。二、难点与重点1、树:树的定义、树的基本运算树的分层定义是递归的世界观人人都有,而哲学只有经过系统的学习的人才能掌握它。世界观是自发成的,是不系统的、不自觉的、缺乏严密的逻辑和理论论证,而哲学则是把自发的、零散的、朴素的世界观加以理论化和系统化,因而具有严密的逻辑和完整的理论体系。appearanceoftheweldappearancequalitytechnicalrequirementsoftheprojectmustnothaveamoltenmetalstreamdoesnotmeltthebasemetaltoweld,weldseamandheat-affectedzonesurfacemustnothavecracks,pores,defectssuchascraterandash,surfacesmoothing,weldandbasemetalshouldbeevenlysmoothtransition.Width2-3mmfromtheedgeofweldGroove.Surfacereinforcementshouldbelessthanorequalto1+0.2timestheslopeedgewidth,andshouldnotbegreaterthan4mm.Depthofundercutshouldbelessthanorequalto0.5mm,totallengthoftheweldsonbothsidesundercutnotexceed10%oftheweldlength,andlongcontinuousshouldnotbegreaterthan100mm.Wrongsideshouldbelessthanorat0.2T,andshouldnotbegreaterthan2mm(wallthicknessmmt)incompleteornotallow7.57.5.1installationqualityprocessstandardsoftheelectricalenclosureCabinetsurfaceisclean,neat,nosignificantphenomenonofconvex,closetonature,closethedoor.7.5.2CabinetCabinetfacepaintsnopaint,returnedtorusted,consistentcolor.7.5.3uniformindirectgapfromtoptobottom,slotwidth1.5mm7.5.4adjacentCabinetsurfaceroughnessis0.7.5.5thecabinetsfirmlyfixed,craftsbeautiful.7.5.6Cabinetsurfacegauge,switchcabinetmarkclear,neat,firmpaste.7.5.7Terminalrowofneat,isreliable,theappearanceiscleanandnotdamaged.7.5.8cablesneatandclean,solidbinding,bindingprocessinappearance.7.5.9thefirstcableproductionfirm,craftsbeautiful,clearsignagedoesnotfade.7.5.10fireproofpluggingtight,nocracksandpores.7.67.6.1ofthestandardelectricalwiringqualitytechnologycablea,themulti-corewirebuncharrangementshouldbeparalleltoeachother,horizontalwireharnessorwireshouldbeperpendiculartothelongitudinalmulti-corewirebunch.Thedistancebetweenthewireharnessandwireharnesssymmetry,andascloseaspossible.B-corewiringharnessintoround,multi-corewirebunchusedgwirebinding,fastening109树中结点个数与高度的关系2、二叉树:二叉树定义、二叉树的基本运算二叉树性质、二叉树中结点个数与高度的关系、不同种类的二叉树棵数完全二叉树的顺序存储、完全二叉树的双亲、子女和兄弟的位置二叉树的前序·中序·后序遍历的递归算法和使用栈的非递归算法二叉树的层次遍历算法中序线索化二叉树、前驱与后继的查找方法、建立中序线索化二叉树的算法3、霍夫曼树:霍夫曼树的构造方法、霍夫曼编码、带权路径长度的计算霍夫曼树是带权路径长度最小的扩充二叉树构造霍夫曼树时,按构造算法,每次具最小关键码的子树是根的左子树,具次小关键码的子树是根的右子树在构造过程中,新二叉树按根的权值加入到森林的最后4、树与森林树
本文标题:数据结构第6章树与森林
链接地址:https://www.777doc.com/doc-3010607 .html