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

相关文章

从基础到高级详解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.

python语言中的常用容器(集合)示例详解

《python语言中的常用容器(集合)示例详解》Python集合是一种无序且不重复的数据容器,它可以存储任意类型的对象,包括数字、字符串、元组等,下面:本文主要介绍python语言中常用容器(集合... 目录1.核心内置容器1. 列表2. 元组3. 集合4. 冻结集合5. 字典2.collections模块

基于Go语言开发一个 IP 归属地查询接口工具

《基于Go语言开发一个IP归属地查询接口工具》在日常开发中,IP地址归属地查询是一个常见需求,本文将带大家使用Go语言快速开发一个IP归属地查询接口服务,有需要的小伙伴可以了解下... 目录功能目标技术栈项目结构核心代码(main.go)使用方法扩展功能总结在日常开发中,IP 地址归属地查询是一个常见需求:

GO语言短变量声明的实现示例

《GO语言短变量声明的实现示例》在Go语言中,短变量声明是一种简洁的变量声明方式,使用:=运算符,可以自动推断变量类型,下面就来具体介绍一下如何使用,感兴趣的可以了解一下... 目录基本语法功能特点与var的区别适用场景注意事项基本语法variableName := value功能特点1、自动类型推

GO语言中函数命名返回值的使用

《GO语言中函数命名返回值的使用》在Go语言中,函数可以为其返回值指定名称,这被称为命名返回值或命名返回参数,这种特性可以使代码更清晰,特别是在返回多个值时,感兴趣的可以了解一下... 目录基本语法函数命名返回特点代码示例命名特点基本语法func functionName(parameters) (nam

Go语言连接MySQL数据库执行基本的增删改查

《Go语言连接MySQL数据库执行基本的增删改查》在后端开发中,MySQL是最常用的关系型数据库之一,本文主要为大家详细介绍了如何使用Go连接MySQL数据库并执行基本的增删改查吧... 目录Go语言连接mysql数据库准备工作安装 MySQL 驱动代码实现运行结果注意事项Go语言执行基本的增删改查准备工作

Go语言使用Gin处理路由参数和查询参数

《Go语言使用Gin处理路由参数和查询参数》在WebAPI开发中,处理路由参数(PathParameter)和查询参数(QueryParameter)是非常常见的需求,下面我们就来看看Go语言... 目录一、路由参数 vs 查询参数二、Gin 获取路由参数和查询参数三、示例代码四、运行与测试1. 测试编程路

Python中的sort()和sorted()用法示例解析

《Python中的sort()和sorted()用法示例解析》本文给大家介绍Python中list.sort()和sorted()的使用区别,详细介绍其参数功能及Timsort排序算法特性,涵盖自适应... 目录一、list.sort()参数说明常用内置函数基本用法示例自定义函数示例lambda表达式示例o