zoukankan
html css js c++ java
插入排序之表插入
表插入
时间复杂度O(n^2)
附加空间O(1)
稳定排序
#define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; #define LEN 8 // 有LEN个元素要排 struct Record { // 为了考察排序的稳定性,定义元素是结构体类型 int key; int otherinfo; int next; }; void LinkListInsertSort(Record *arr, int length) // length是要排序的元素的个数,0号单元除外 { for (int i = 2; i <= length; ++i) { int q = 0; // q跟在p之后,以方便插入结点(插在q后p前) for (int p = arr[0].next; p != 0; p = arr[p].next) { // 作为单链表,只能从前向后找(用双向链表可避免) if (arr[p].key > arr[i].key) // 这是从前向后找的缺陷:到相同的,还得继续向后(而直接插入排序是从后向前找的) break; q = p; } arr[i].next = arr[q].next; // p为0时亦然 arr[q].next = i; } } int main(void) { freopen("in.txt", "r", stdin); Record a[LEN + 1] = {0}; a[0].next = 1; //<span style="white-space:pre"> </span>0号单元作为头结点,指针域注意初始化 for (int i = 1; i <= LEN; ++i) cin >> a[i].key >> a[i].otherinfo; LinkListInsertSort(a, LEN); for (int p = a[0].next; p != 0 ; p = a[p].next) cout << a[p].key << '\t' << a[p].otherinfo << endl; return 0; } /* in.txt: 49 1 38 0 65 0 97 0 76 0 13 0 27 0 49 2 out: 13 0 27 0 38 0 49 1 49 2 65 0 76 0 97 0 */
查看全文
相关阅读:
IE调试页面总结
解决XAMPP不能启动Apche服务问题
WCF与Ajax开发实践系列课程
Team Foundation 中的错误和事件消息
设置SVN提交日志必填
MyBatis.Net 学习手记
PandorBox 中安装aria2失败的解决办法
Linux 启动出现 busybox vx.x.xx built-in shell 的问题
Sql Server 中查询存储过程的修改时间
ubuntu挂载和挂载NTFS分区命令
原文地址:https://www.cnblogs.com/jjtx/p/2533468.html
最新文章
netcore3.0 IConfiguration配置源码解析(三)
netcore3.0 IConfiguration配置源码解析(二)
netcore3.0 IConfiguration配置源码解析(一)
asp.net Core 部署到CentOs7上,使用Nginx做代理
10种jquery选择器操作详解(转)
Linq to SharePoint与权限提升(转)
MySQL面试题
Visual Studio生成webservice代理类
Java_EE面试题
Java_框架面试题
热门文章
Java_集合面试题
Nginx反向代理tomcat返回400 bad request
Nginx中文url出现404问题
JavaSE面试题
请确保 ASP.NET State Service (ASP.NET 状态服务)已启动 问题解决
VB Byte数组转字符串问题
Windows下搭建IOS开发环境(一)
前端框架技术交流群
正则表达式口诀 正则表达式学习工具
分页实体
Copyright © 2011-2022 走看看