当前位置:网站首页>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;
}
边栏推荐
- PyTorch builds a neural network to predict temperature (dataset comparison, CPU vs GPU comparison)
- 【实战技能】单片机bootloader的CANFD,I2C,SPI和串口方式更新APP视频教程(2022-08-01)
- Using the Work Queue Manager (4)
- An animation optimization of traditional guide layer animation
- PyTorch构建分类网络模型(Mnist数据集,全连接神经网络)
- GameFi 行业下滑但未出局| June Report
- 力扣刷题 每日两题(一)
- Five, the function calls
- 欧曼自动挡、银河大马力、行星新产品 欧曼全新产品以燎原之势赢领市场
- Golang 字符串
猜你喜欢

An工具介绍之骨骼工具

How to build an overseas purchasing system/purchasing website - source code analysis

An基本工具介绍之选择线条工具(包教会)

Real number rounding and writing to file (C language file)

An工具介绍之3D工具

为冲销量下探中低端市场,蔚来新品牌产品定价低至10万?

An动画优化之补间形状与传统补间的优化

An动画基础之元件的影片剪辑动画与传统补间

欧曼自动挡、银河大马力、行星新产品 欧曼全新产品以燎原之势赢领市场

基于php旅游网站管理系统获取(php毕业设计)
随机推荐
Golang 数组和切片
Multithreading in Redis 6
An introduction to the pen tool, pencil tool and brush tool
An animation basic element movie clip effect
Secure Custom Web Application Login
Golang 字典 map
Golang channel channel
Golang 结构体&方法
字节最爱问的智力题,你会几道?
Yahoo!Answers - data set
滑动窗口的最大值
An动画基础之元件的图形动画与按钮动画
Blog records life
Nodejs 安装依赖cpnm时,install 出现Error: Cannot find module ‘fs/promises‘
【深度学习】高效轻量级语义分割综述
An introduction to the width tool, deformation tool and lasso tool
leetcode 11. 盛最多水的容器
sessionStorage of BOM series
Station B responded that "HR said that core users are all Loser": the interviewer was persuaded to quit at the end of last year and will learn lessons to strengthen management
Tinymce plugins [Tinymce扩展插件集合]