重温经典排序思想--c语言常用排序全解(Review classic sorting ideas, --c language, commonly used sorting complete solution).doc
- 1、本文档共28页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
重温经典排序思想--c语言常用排序全解(Review classic sorting ideas, --c language, commonly used sorting complete solution)
重温经典排序思想--c语言常用排序全解(Review classic sorting ideas, --c language, commonly used sorting complete solution)
Review classic sorting ideas, --C language, commonly used sorting, full selection, since the rerli Blog
Keyword selection, sort, direct insertion, sort, bubble sort, Hill sort, quick sort, heap sort
Source
*
===============================================
Author: rerli
Time: 2003-12-15
Objective: To review the classical sorting idea and to implement the sorting algorithm with the pointer of C language
================================================
* /
*
=============================================================================
Related knowledge (all definitions are intended only to help readers understand relevant concepts, not strictly defined):
1, stable sorting and unstable sorting
Simply put, all equal numbers can still keep their relative order before they are sorted by some sort of sorting method
This sort of sorting method is stable. On the other hand, it is unstable.
For example: a set of numbers sorted before A1, A2, A3, A4, A5,, where a2=a4, after some sort of A1, A2, A4, A3, a5,
We say that this sort of ordering is stable, because the A2 is sorted before A4, and after sorting, it is still in front of a4. If it becomes A1, a4,
A2, A3, A5 arent stable anymore.
2, internal sorting and external sorting
In the sorting process, all the numbers that need to be sorted are in memory, and their storage order is adjusted in memory, called intra sorting;
In the sorting process, only part of the number is transferred to memory, and the memory adjustment in the file memory storing order sorting method called external sorting.
3, the time complexity and space complexity of the algorithm
The time complexity of the algorithm refers to the amount of computation required to perform the algorithm.
The spatial complexity of an algorithm, in general, refers to the memory space needed to perform this algorithm.
===========================================================
您可能关注的文档
- 开发话术(Word development).doc
- 必修二地理(Compulsory two geography).doc
- 怀乡——一个跳舞女子的尤滋里斯(A woman dancing nostalgia - especially Rees.).doc
- 快乐家装九大接单步骤1(Nine steps to happy home improvement step 1).doc
- 怎样去学习(How to study).doc
- 思维命题(Thinking proposition).doc
- 恩格斯的科学发展动力论思想探析(Analysis of Engels's theory of the motive force of scientific development).doc
- 思科常用命令(CISCO command).doc
- 恶意欠薪者担管理刑事责任很有必要(It is necessary for the victims of malicious wages to manage criminal responsibility).doc
- 懂点中医——入门篇 无相利他(Know something about Chinese medicine -- introduction, no phase, altruism).doc
- 重装机兵(Metal Max).doc
- 一、指数函数(Exponential function).doc
- 一个人,想要优秀,你必须要接受挑战(If you want to be good, you must accept the challenge).doc
- 一 简述下列概念数据、数据元素、数据类型、数据结构、(The following concepts are outlined data, data elements, data types, and data structures,).doc
- 一个晚清官员的大清亡国反思(One of the officials of the Qing Dynasty conquered reflection).doc
- 一个老预算师的经验之谈(An old budget division of the wise remark of an experienced person).doc
- 一些vr参数(Some VR parameters).doc
- 一位母亲写给她18岁女儿的信(A letter addressed to her 18 year old daughter by a mother).doc
- 一位师兄的华工建筑考研之路(A senior Chinese worker studying the road of postgraduate entrance examination).doc
- 一位师兄的文张,看得俺直汗颜(A brother of Wen Zhang, I see straight to shame).doc
文档评论(0)