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 */
查看全文
相关阅读:
Unable to resolve superclass of
Android开发eclipse错误汇总
Failed to fetch URL https://dl-ssl.google.com/android/repository/repository-6.xml, reason: Connection to https://dl-ssl.google.com refused
INSTALL_FAILED_MISSING_SHARED_LIBRARY
failed to create the java virtual machine
Android 的一些提示框
linux的mount(挂载)命令详解
Mount挂载命令使用方法
7Z命令行详解
Android中Java与JavaScript之间交互(转)
原文地址:https://www.cnblogs.com/jjtx/p/2533468.html
最新文章
数据库SQL优化总结
c#的SortedList使用方法
C# list介绍
ADO.NET对象模型
趣味理解ADO.NET对象模型
C# ToString格式大全
springboot之启动原理解析
Spring Boot @Autowired 没法自动注入的问题
SpringBoot中实现依赖注入功能
Spring Boot + Jpa(Hibernate) 架构基本配置
热门文章
SpringCloud使用jpa之Rest方式
SpringCloud使用jpa之传统方式
Centos7上HBase的安装和配置
Hadoop通过路径和和链接访问HDFS
Hadoop hdfs完全分布式搭建教程
CentOS7为firewalld添加开放端口及相关操作
Android开发EditText属性
安卓中的布局属性详解
android模拟器使用gps定位
java.lang.NoClassDefFoundError: com.baidu.mapapi.BMapManager
Copyright © 2011-2022 走看看