当前位置:网站首页>Insertion or Heap Sort
Insertion or Heap Sort
2022-08-03 12:59:00 【小L~~~】
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?
Input Specification:
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.
Output Specification:
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.
Sample Input 1:
10
3 1 2 8 7 5 9 4 6 0
1 2 3 7 8 5 9 4 6 0
Sample Output 1:
Insertion Sort
1 2 3 5 7 8 9 4 6 0
Sample Input 2:
10
3 1 2 8 7 5 9 4 6 0
6 4 5 1 0 3 2 7 8 9
Sample Output 2:
Heap Sort
5 4 3 1 0 2 6 7 8 9
题目大意:
给你长度为n的两个序列,判断第二个序列是第一个序列经过插入排序还是堆排序之后的结果,然后输出是哪种排序,在输出第二个序列下一趟的排序序列。
#include<bits/stdc++.h>
using namespace std;
const int maxn = 150;
int insert[maxn], heap[maxn], a[maxn], b[maxn], n;
bool judge(int a[], int b[]) {
for(int i = 1; i <= n; i++) {
if(a[i] != b[i]) return false;
}
return true;
}
void print(int a[]) {
printf("%d", a[1]);
for(int i = 2; i <= n; i++) printf(" %d", a[i]);
}
bool insertsort(int a[]) {
for(int i = 2; i <= n; i++) {
if(a[i-1] > a[i]) {
int temp = a[i], j;
for(j = i-1; temp < a[j]; j--) a[j+1] = a[j];
a[j+1] = temp;
}
if(judge(a, b)) {
puts("Insertion Sort");
i++;
if(a[i-1] > a[i]) {
int temp = a[i], j;
for(j = i-1; temp < a[j]; j--) a[j+1] = a[j];
a[j+1] = temp;
}
print(a);
return true;
}
}
return false;
}
void HeapAdjust(int a[], int k, int len) {
a[0] = a[k];
for(int i = k * 2; i <= len; i *= 2) {
if(i < len && a[i] < a[i + 1]) i++;
if(a[0] > a[i]) break;
else {
a[k] = a[i];
k = i;
}
}
a[k] = a[0];
}
void BuildMaxHeap(int a[]) {
for(int i = n / 2; i > 0; i--)
HeapAdjust(a, i, n);
}
void heapsort(int a[]) {
BuildMaxHeap(a);
for(int i = n; i > 1; i--) {
swap(a[1], a[i]);
HeapAdjust(a, 1, i - 1);
if(judge(a, b)) {
puts("Heap Sort");
swap(a[1], a[--i]);
HeapAdjust(a, 1, i-1);
print(a);
}
}
}
int main() {
scanf("%d", &n);
for(int i = 1; i <= n; i++) {
scanf("%d", &a[i]);
insert[i] = heap[i] = a[i];
}
for(int i = 1; i <= n; i++) scanf("%d", &b[i]);
if(insertsort(insert)) return 0;
heapsort(heap);
return 0;
}
边栏推荐
- D the author: d new features
- The new interface, jingdong comment interface
- Hanyuan Hi-Tech G8032 standard ERPS ring network switch Gigabit 4 optical 10 electrical industrial Ethernet switch ring network + WEB management + SNMP VLAN planning
- 4年工作经验,多线程间的5种通信方式都说不出来,你信吗?
- 便携烙铁开源系统IronOS,支持多款便携DC, QC, PD供电烙铁,支持所有智能烙铁标准功能
- An animation based button animation combined with basic code
- 使用百度EasyDL实现施工人员安全装备检测
- 软件测试面试(四)
- 2022 年 CISO 最关心的是什么?
- An工具介绍之钢笔工具、铅笔工具与画笔工具
猜你喜欢

GameFi 行业下滑但未出局| June Report

HCIP 第十六天笔记(SVI、生成树协议)

VLAN 实验

How to disable software from running in the background in Windows 11?How to prevent apps from running in the background in Windows 11

HCIP第十五天笔记(企业网的三层架构、VLAN以及VLAN 的配置)

An animation based button animation combined with basic code

Jmeter使用
![[Deep Learning] Overview of Efficient and Lightweight Semantic Segmentation](/img/d8/a367c26b51d9dbaf53bf4fe2a13917.png)
[Deep Learning] Overview of Efficient and Lightweight Semantic Segmentation

Oracle is installed (system disk) and transferred from the system disk to the data disk

【实战技能】单片机bootloader的CANFD,I2C,SPI和串口方式更新APP视频教程(2022-08-01)
随机推荐
Win11怎么禁止软件后台运行?Win11系统禁止应用在后台运行的方法
易观分析:2022年Q2中国网络零售B2C市场交易规模达23444.7亿元
[Blue Bridge Cup Trial Question 48] Scratch Dance Machine Game Children's Programming Scratch Blue Bridge Cup Trial Question Explanation
Last blog for July
D the author: d new features
An动画优化之传统引导层动画
An动画基础之按钮动画与基础代码相结合
An动画优化之补间形状与传统补间的优化
Sogou news - dataset
来广州找工作有一个多月了,今天终于有着落了,工资7000
[微服务]多级缓存
An工具介绍之骨骼工具
An动画基础之散件动画原理与形状提示点
An动画基础之元件的图形动画与按钮动画
Golang arrays and slices
The maximum number of sliding window
d write binary
安防监控必备的基础知识「建议收藏」
使用 %Status 值
Byte's favorite puzzle questions, how many do you know?