- 1、本文档共39页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Lecture 12 Sorting.ppt
Lecture 12: Sorting ab? y n cd? cd? ca? da? cb? db? b?ad?c b?ab?d?c db?ad?c cabcd ab?cd Ask only questions you don’t know answers to. bc? aba?cd ab a?cd c?b bd? a?cd?b a?c?bd 5 compares 4 compares Lecture 12: Sorting A different strategy, insertion sorts, may get lucky. ab? y n bc? cd? abcd 3 compares Lecture 12: Sorting ab? y n bc? cd? abcd But it may be unlucky. ab c?b ac? c?ab bd? d?b c?ab ad? d?a c?ab cd? 6 compares d?c?ab Lecture 12: Sorting Consider all possible sorting trees.How many leaves must a sorting tree have to distinguish allpossible orderings of n items? a[0]a[1] ? Lecture 12: Sorting How many leaves must there for a sorting tree for n items? a[0]a[1] n!, the number of different permutations. Lecture 12: Sorting Theorem: A binary tree with K leaves must have depth at least ?log2 K?. In other words, a BT with k leaves and depth d has d = ?log2 K? or K = 2d Proof: Prove by induction that a tree of depth d can have at most, 2d leaves.Base: for d=0, there is 1 leaf.Suppose true for d, consider tree of depth d+1. x y BIH: x and y have at most 2d leaves so whole tree has at most 2*2d = 2d+1 leaves. Now the shortest trees with K leaves must be “perfect” and their depth will be ?log2 K? Lecture 12: Sorting So a tree with n! leaves has depth at least lg n!. Notice that depth = the maximum number of tests one might have to perform.lg n! = lg n(n-1)(n-2)…1 = lg n + lg n-1 + lg n-2 + … + lg 1 ? lg n + … + lg(n/2) ? (n/2) lg(n/2) ? (n/2) lg n - n/2 = W(n lg n)So any sort algorithm takes W(n lg n) comparisons. Lecture 12: Sorting Is there a way to sort without using binary comparisons? Ternary comparisons, K-way comparisons. The basic W(n log n) result will still be true, because W(log2 x)= W(logk x). Useful speed-up heuristic: use your data as an index of an array. Lecture 12: Sorting Consider sorting tray of letters int counts[26]; int j = 0; for(int i=0; i26; i++) counts[i]=0; for(j=0; jtray.length; j
您可能关注的文档
- Cours de français 1法语教程.ppt
- Cryptography and Network SecurityChapter 12.ppt
- CSCC 12 Days of Christmas.ppt
- CSE115ENGR160 Discrete Mathematics042612.ppt
- CSE115ENGR160 Discrete Mathematics050112.ppt
- Current Seafood Quality and Safety Concerns.ppt
- CYTOKINES AND RECEPTORSChapter 12.ppt
- D7_6空间曲线.ppt-第七章.ppt
- Dalian, Your Ideal Destination For IT Outsourcing.ppt
- Data Structures(数据结构)Course 12Graphs.ppt
- 2025年广西中考地理二轮复习:专题四+人地协调观+课件.pptx
- 2025年广西中考地理二轮复习:专题三+综合思维+课件.pptx
- 2025年中考地理一轮教材梳理:第4讲+天气与气候.pptx
- 第5讲+世界的居民课件+2025年中考地理一轮教材梳理(商务星球版).pptx
- 冀教版一年级上册数学精品教学课件 第1单元 熟悉的数与加减法 1.1.6 认识1-9 第6课时 合与分.ppt
- 2025年中考一轮道德与法治复习课件:坚持宪法至上.pptx
- 2025年河北省中考一轮道德与法治复习课件:崇尚法治精神.pptx
- 八年级下册第二单元+理解权利义务+课件-2025年吉林省中考道德与法治一轮复习.pptx
- 精品解析:湖南省娄底市2019-2020学年八年级(上)期中考试物理试题(原卷版).doc
- 2025年中考地理一轮教材梳理:第10讲+中国的疆域与人口.pptx
文档评论(0)