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

Chap11 sorting.ppt

  1. 1、本文档共91页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Chap11 sorting

Data Structures and Algorithms Chapter 11: Sorting Electronic Information Engineering Chongqing University of Science and Technology May 2009 highlights 11-1 Sorting Concepts 11-2 Insertion Sorts 10-2-1 Straight Insertion Sort 10-2-2 Shell Sort 11-3 Selection Sorts 10-3-1 Straight Selection Sort 10-3-2 Heap Sort 11-4 Exchange Sorts 10-4-1 Bubble Sort 10-4-2 Quick Sort 11-5 External sorts Vocabulary 排序 sort 内部排序 internal sort 外部排序 external sort 插入排序 insertion sort 缩小增量排序 diminishing increment sort 选择排序 selection sort 堆排序 heap sort 快速排序 quick sort 归并排序 merge sort 基数排序 radix sort 平衡归并排序 balance merging sort 二路平衡归并排序 balance two-way merging sort 多步归并排序 ployphase merging sort 置换选择排序 replacement selection sort 11-1 Sorting Concepts One of the most common applications in computer science is sorting, the process through which data are arranged according to their values. Sorting algorithms are classified as internal or external Internal sort holds all data in primary memory during the sorting process External sort uses primary memory for data currently sorted, and secondary storage for data that did not fit in primary storage Sorting Concepts Contd Sort order may be ascending or descending Sort efficiency measures relative efficiency of the sort, estimating the number of comparisons and moves required to order an unordered list A Sort Pass traverses data through a portion or the entire list Sort stability indicates whether data with equal keys maintain relative input order in the output Sort stability 11-2 Insertion Sorts 11-2-1 Straight Insertion Sort 11-2-2 Shell Sort 11-2-1 Insertion sort concept Straight Insertion Sort in the straight insertion sort, the list at any moment is divided into sorted and unsorted sublists. In each pass, the first element of the unsorted sublist is inserted into the sorted sublist. Insertion sort example Algorithm Straight Insertion Sort algorithm insertionSort ref list , val last current 1 loop current last hold list[cu

文档评论(0)

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

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

1亿VIP精品文档

相关文档