- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
算法导论第七章快速排序
Quick sort(快速排序) 主要内容 Quick sort快速排序 Quick sort’s idea--Divide and Conquer Quick sort’s idea--Divide and Conquer Partitioning subroutine划分子程序 Example of Partitioning Analysis of quicksort Worst-case of quicksort Worst-case recursive tree Best Case Partitioning对等划分 Best-case analysis A Recursion tree Quicksort VS. Mergesort Which is better? Test environment: IBM370/158 Programming in PL/1 Input consists of random integers range in (0, 10000) Quicksort平均时间分析 Quicksort平均时间分析 Quicksort平均时间分析 Randomize-Partitioning Randomized quick sort algorithm 思考题 7.2-2,3 7.4-2,3 * * (一种算法设计技术) Quick sort快速排序 Randomized quick sort algorithm随机版本快速排序算法 Efficient sorting algorithm --Proposed by C.A.R. Hoare in 1962 --Divide-and-Conquer algorithm --Sorts “in place” (like insertion sort, but not like merge sort) --Very practical (with tuning) --Can be viewed as a randomized Las Vegas algorithm --Worst-case running time: Θ(n2) --Expected running time: Θ(nlogn) --Constant hidden in Θ(nlogn) are small. Quicksort an n-element array: --Divide: Partition the array into two subarrays around a pivot x such that elements in lower subarray≤x≤ elements in upper subarray --Conquer: Recursively sort the subarrays. --Combine: Trivial. Key point: Linear-time partitioning subroutine. Initial call Quicksort(A, 1, n) A[p,…,i]:known to be ≤ pivot A[i+1,…,j-1]:known to be pivot A[j…r-1]:not yet examined A[r]:pivot The operation of Partition on a sample array. Lightly shaded array elements are all with values no greater than x (the pivot). Heavily shaded array elements are all with values greater than x. Assume all input elements are distinct In practice, there are better partitioning algorithms for when duplicate input elements may exist Let T(n) = worst-case running time on an array of n elements Input sorted or reverse sorted已有序 Partition around min or max element One side of partition always has no elements T(n) = T(n - 1) + T(0)
您可能关注的文档
最近下载
- DMX512灯光调光控制程序.doc VIP
- 四种不同类型土壤保水剂保水性能的比较-生态学杂志.PDF VIP
- 2019年中央机关公开遴选和选调公务员笔试真题〔B卷完好版解析〕_党政公选考试公共科目题库_公共科目真题_模拟试题.docx VIP
- 北京市东城区汇文中学2023-2024学年七年级上学期月考数学试题(无答案).docx VIP
- 《有效复习》班队活动教案.doc VIP
- 四年级阅读理解专项训练可打印.docx VIP
- 法医考试题目及答案.doc VIP
- 《水泥胶砂保水率测定方法》GB_T 45002-2024.pdf
- USON介绍分析.ppt VIP
- 新学期小学英语开学第一课主题班会PPT课件.pptx VIP
文档评论(0)