Insertion or Heap Sort (25分)【C语言】

2024-04-23 16:38
文章标签 语言 25 heap sort insertion

本文主要是介绍Insertion or Heap Sort (25分)【C语言】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

  • 题目:
    • 输入格式
    • 输出格式
    • 输入样例
    • 输出样例
    • 输入样例
    • 输出样例
  • 算法
    • 问题分析
      • 代码实现
        • HeapSort函数:一趟堆排序
        • PerDown、BuildMaxHeap函数:下滤和生成最大堆
        • IsInsertion函数:判断是否是插入函数

题目:

According to Wikipedia:
Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, insertion sort removes one element from the input data, finds the location it belongs within the sorted list, and inserts it there. It repeats until no input elements remain.
Heap sort divides its input into a sorted and an unsorted region, and it iteratively shrinks the unsorted region by extracting the largest element and moving that to the sorted region. it involves the use of a heap data structure rather than a linear-time search to find the maximum.
Now given the initial sequence of integers, together with a sequence which is a result of several iterations of some sorting method, can you tell which sorting method we are using?

输入格式

Each input file contains one test case. For each case, the first line gives a positive integer N (≤100). Then in the next line, N integers are given as the initial sequence. The last line contains the partially sorted sequence of the N numbers. It is assumed that the target sequence is always ascending. All the numbers in a line are separated by a space.

输出格式

For each test case, print in the first line either “Insertion Sort” or “Heap Sort” to indicate the method used to obtain the partial result. Then run this method for one more iteration and output in the second line the resulting sequence. It is guaranteed that the answer is unique for each test case. All the numbers in a line must be separated by a space, and there must be no extra space at the end of the line.

输入样例

10
3 1 2 8 7 5 9 4 6 0
1 2 3 7 8 5 9 4 6 0

输出样例

Insertion Sort
1 2 3 5 7 8 9 4 6 0

输入样例

10
3 1 2 8 7 5 9 4 6 0
6 4 5 1 0 3 2 7 8 9

输出样例

Heap Sort
5 4 3 1 0 2 6 7 8 9

算法

问题分析

  • 判断是否是插入排序
    在这里插入图片描述
  • 如何进行下一步堆排序

用原始数据,一次一次生成堆排序序列,和已经存在的队列对比。当发现符合时,再进行一步。

代码实现

typedef int ElementType;
int main()
{	int N;scanf("%d",&N);ElementType * A=(ElementType*)malloc(sizeof(ElementType)*N);ElementType * B=(ElementType*)malloc(sizeof(ElementType)*N);int i;for(i=0;i<N;i++){scanf("%d",&(A[i]));}for(i=0;i<N;i++){scanf("%d",&(B[i]));}int Is=IsInsertion(A,B,N);if(Is>1){printf("Insertion Sort\n");int Temp=B[Is];for(i=Is;i>0&&(B[i-1]>Temp);i--){B[i]=B[i-1];}B[i]=Temp;}else{printf("Heap Sort\n");int flag=0;int t=N;do{HeapSort(A,t);for(i=0;i<N;i++){if(A[i]!=B[i]){t--;break;}if(i==N-1){flag=1;}}}while(flag==0);HeapSort(A,t-1);for(i=0;i<N;i++){B[i]=A[i];}}for(i=0;i<N;i++){printf("%d",B[i]);if(i!=N-1){printf(" ");}}return 0;
}
HeapSort函数:一趟堆排序
void HeapSort(ElementType A[],int N)
{static flag=0;if(flag==0){BuildMaxHeap(A,N);flag=1; }ElementType T=A[0];A[0]=A[N-1];A[N-1]=T;PerDown(A,N-1,0);
}
PerDown、BuildMaxHeap函数:下滤和生成最大堆
void PerDown(ElementType A[],int N,int Add)
{//child=2*parent+1; ElementType T=A[Add];int parent=Add;int child;for(;parent*2+1<=N-1;parent=child){child=parent*2+1;if(child<N-1&&A[child+1]>A[child]){child+=1;}if(A[child]<=T){break;};A[parent]=A[child];}A[parent]=T;
}
void BuildMaxHeap(ElementType A[],int N)
{int i;for(i=N/2-1;i>-1;i--){PerDown(A,N,i);}
}		
IsInsertion函数:判断是否是插入函数
int IsInsertion(ElementType A[],ElementType B[],int N)
{int i;int ret=0;for(i=1;i<N;i++){if(B[i]<B[i-1]){ret=i;break;}}for(i=ret;i<N;i++){if(A[i]!=B[i]){ret=0;}}return ret;
} 

这篇关于Insertion or Heap Sort (25分)【C语言】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/929330

相关文章

C# List.Sort四种重载总结

《C#List.Sort四种重载总结》本文详细分析了C#中List.Sort()方法的四种重载形式及其实现原理,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友... 目录1. Sort方法的四种重载2. 具体使用- List.Sort();- IComparable

C语言逗号运算符和逗号表达式的使用小结

《C语言逗号运算符和逗号表达式的使用小结》本文详细介绍了C语言中的逗号运算符和逗号表达式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习... 在C语言中逗号“,”也是一种运算符,称为逗号运算符。 其功能是把两个表达式连接其一般形式为:表达

Go语言实现桥接模式

《Go语言实现桥接模式》桥接模式是一种结构型设计模式,它将抽象部分与实现部分分离,使它们可以独立地变化,本文就来介绍一下了Go语言实现桥接模式,感兴趣的可以了解一下... 目录简介核心概念为什么使用桥接模式?应用场景案例分析步骤一:定义实现接口步骤二:创建具体实现类步骤三:定义抽象类步骤四:创建扩展抽象类步

GO语言实现串口简单通讯

《GO语言实现串口简单通讯》本文分享了使用Go语言进行串口通讯的实践过程,详细介绍了串口配置、数据发送与接收的代码实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要... 目录背景串口通讯代码代码块分解解析完整代码运行结果背景最近再学习 go 语言,在某宝用5块钱买了个

GO语言zap日志库理解和使用方法示例

《GO语言zap日志库理解和使用方法示例》Zap是一个高性能、结构化日志库,专为Go语言设计,它由Uber开源,并且在Go社区中非常受欢迎,:本文主要介绍GO语言zap日志库理解和使用方法的相关资... 目录1. zap日志库介绍2.安装zap库3.配置日志记录器3.1 Logger3.2 Sugared

Go语言中如何进行数据库查询操作

《Go语言中如何进行数据库查询操作》在Go语言中,与数据库交互通常通过使用数据库驱动来实现,Go语言支持多种数据库,如MySQL、PostgreSQL、SQLite等,每种数据库都有其对应的官方或第三... 查询函数QueryRow和Query详细对比特性QueryRowQuery返回值数量1个:*sql

GO语言中gox交叉编译的实现

《GO语言中gox交叉编译的实现》本文主要介绍了GO语言中gox交叉编译的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、安装二、使用三、遇到的问题1、开启CGO2、修改环境变量最近在工作中使用GO语言进行编码开发,因

从基础到高级详解Go语言中错误处理的实践指南

《从基础到高级详解Go语言中错误处理的实践指南》Go语言采用了一种独特而明确的错误处理哲学,与其他主流编程语言形成鲜明对比,本文将为大家详细介绍Go语言中错误处理详细方法,希望对大家有所帮助... 目录1 Go 错误处理哲学与核心机制1.1 错误接口设计1.2 错误与异常的区别2 错误创建与检查2.1 基础

Go语言中json操作的实现

《Go语言中json操作的实现》本文主要介绍了Go语言中的json操作的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录 一、jsOChina编程N 与 Go 类型对应关系️ 二、基本操作:编码与解码 三、结构体标签(Struc

Python中的sort方法、sorted函数与lambda表达式及用法详解

《Python中的sort方法、sorted函数与lambda表达式及用法详解》文章对比了Python中list.sort()与sorted()函数的区别,指出sort()原地排序返回None,sor... 目录1. sort()方法1.1 sort()方法1.2 基本语法和参数A. reverse参数B.