网站大量收购独家精品文档,联系QQ:2885784924

Lecture 12 Sorting.ppt

  1. 1、本文档共39页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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 all possible 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

文档评论(0)

gshshxx + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档