重温经典排序思想--c语言常用排序全解(转载)(Review classic sorting ideas, --c language commonly used sorting full solution (Reprint)).doc
- 1、本文档共28页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
重温经典排序思想--c语言常用排序全解(转载)(Review classic sorting ideas, --c language commonly used sorting full solution (Reprint))
重温经典排序思想--c语言常用排序全解(转载)(Review classic sorting ideas, --c language commonly used sorting full solution (Reprint))
Review classic sorting ideas, --C language commonly used sorting full solution (Reprint)
*
===============================================
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.
================================================================================
* /
*
================================================
Function: select sort
Input: th
您可能关注的文档
- 开发话术(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
- 在全市2025年民政工作会议上的讲话.docx
- 警示教育大会案例警示的心得体会.docx
- 基层党员教育培训选粹汇编(14篇)(20250101-0217).docx
- 某市总工会2024年度领导班子总结报告.docx
- 在某报社2025年第一季度开门红动员部署会上的讲话.docx
- 某高校校长在2025年春季学期工作部署会议上的讲话.docx
- 某高校校党委书记在学校2025年度工作动员部署会上的讲话:凝心聚力 奋勇争先 开创学校高质量发展新局面.docx
- 在全市办公室系统培训会议上的讲话.docx
- 加强纪检监察工作规范化法治化正规化建设.docx
- 人民法院、检察院“履职践诺”承诺内容汇编(10篇).docx
最近下载
- 广东省百师联盟2025届高三一轮复习联考四历史试卷(含答案).pdf VIP
- 2025《神经病学》考试试题及参考答案.pdf
- 2024年托幼机构卫生保健人员考核测试卷(含答案).pdf
- 2024年职工职业技能大赛数控铣工赛项理论考试题库-下(多选、判断题汇总).docx
- MT 872-2000煤矿用带式输送机保护装置技术条件.pdf VIP
- GB/T 7025.1-2023 电梯主参数及轿厢、井道、机房的型式与尺寸 第1部分:Ⅰ、Ⅱ、Ⅲ、Ⅵ类电梯(2).pdf
- 小学语文部编版1-6年级古诗文129篇背诵过关表.docx
- 慢性萎缩性胃炎.ppt VIP
- 老年康复习题.pdf VIP
- 新改版教科版四年级下册科学活动手册答案.pdf
文档评论(0)