计算机专业英语Chapter3课件.ppt
- 【下载声明】
1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
3. 本页资料《计算机专业英语Chapter3课件.ppt》由用户(三亚风情)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 计算机专业 英语 Chapter3 课件
- 资源描述:
-
1、内容内容l正文lBalanced Tree Data Structures lQuicksort l阅读材料lLinked List lNew Algorithms for Maintaining All-Pairs Shortest Paths 1 Balanced Tree Data Structures lComputer sizes and power lSupercomputer and Mainframe lMinicomputer lWorkstation lPersonal computer Key Wordslred-black tree红黑树,是一种平衡树lbranchin
2、g factor分支因子lbranchinessn.分支性lasymptoticadj.趋近lworst case最差状况lsingle pass单遍,单次lanalogousadj.同样功能的lbinary tree二叉树linventoryn.目录、存货清单lterabyte1 Terabyte=1024 GBldisburse支付,支出NoteslFor example,a b-tree with a height of 2 and a branching factor of 1001 can store over one billion keys but requires at mos
3、t two disk accesses to search for any node.lIf t is this minimization factor,every node must have at least t-1 keys.Under certain circumstances,the root node is allowed to violate this property by having fewer than t-1 keys.例如,一个高度为2、分支因子为1001的树可以储存高达十亿个键,而最多只需要访问磁盘两次就可以访问到任意一个节点。如果t是最小因子,每个节点都必须有至少
4、t-1个键。在特定的环境下,根节点的键少于t-1并不违反这个属性。NoteslIf the node is not full prior to the insertion,no special action is required;however,if the node is full,the node must be split to make room for the new key.lSince each access to a node may correspond to a costly disk access,it is desirable to avoid the second
5、pass by ensuring that the parent node is never full.To accomplish this,the presented algorithm splits any full nodes encountered while descending the tree.如果结点在插入前不满,则不需要做特殊处理。但是,如果结点是满的,为了给新的键提供空间,就需要将结点拆分。由于每一次对结点的存取都可能导致高成本的磁盘存取,因此应该尽量使父结点永不满以避免第二次访问。为了达到这个目的,以上算法在向下遍历树结构时拆分所有已满的结点。2 Quicksort Ke
展开阅读全文