A1098. Insertion or Heap Sort
According to Wikipedia:
Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. At 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 resuling 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
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int num[], sequ[], num2[], N;
void downAdjust(int adj, int N){
int i = adj, j = * i;
while(j <= N){
if(j < N && num[j] < num[j + ]){
j = j + ;
}
if(num[i] < num[j]){
swap(num[i], num[j]);
i = j;
j = * i;
}else{
break;
}
}
}
int heapSort(int N){
int times = N;
for(int i = N / ; i >= ; i--){
downAdjust(i, N);
}
int find, prt = ;
for(int i = ; i <= times; i++){
find = ;
swap(num[], num[N]);
N--;
downAdjust(, N);
for(int j = ; j <= times; j++){
if(num[j] != sequ[j]){
find = ;
break;
}
}
if(find == ){
prt = ;
continue;
}
if(prt == ){
printf("Heap Sort\n");
for(int k = ; k <= times; k++){
if(k == times) printf("%d", num[k]);
else printf("%d ", num[k]);
}
return ;
}
}
return ;
} void insertSort(int N){
int find, prt = ;
for(int i = ; i < N; i++){
find = ;
int temp = num2[i + ];
int j;
for(j = i; j >= ; j--){
if(temp <= num2[j]){
num2[j + ] = num2[j];
}else break;
}
num2[j + ] = temp;
for(int k = ; k <= N; k++){
if(num2[k] != sequ[k]){
find = ;
break;
}
}
if(find == ){
prt = ;
continue;
}
if(prt == ){
printf("Insertion Sort\n");
for(int k = ; k <= N; k++){
if(k == N) printf("%d", num2[k]);
else printf("%d ", num2[k]);
}
return;
}
}
}
int main(){
scanf("%d", &N);
for(int i = ; i <= N; i++){
scanf("%d", &num[i]);
num2[i] = num[i];
}
for(int i = ; i <= N; i++){
scanf("%d", &sequ[i]);
}
int tag = heapSort(N);
if(tag == )
insertSort(N);
cin >> N;
return ;
}
总结:
1、堆排序主要有两部分(大根堆)。
向下调整一个元素A:将A元素与其左右孩子比较,如果它小,则与其中较大的孩子交换。继续追踪这个A元素,在它的调整过的新位置上,如果它比新的孩子节点还要小,则继续交换,直到A大于自己的两个孩子(或者只有一个孩子),或A到达最低端叶节点。
void downAdjust(int adj, int N){ //adj为待调整元素下标,N为数组长度
int i = adj, j = * i;
while(j <= N){
if(j < N && num[j] < num[j + ]){
j = j + ;
}
if(num[i] < num[j]){
swap(num[i], num[j]);
i = j;
j = * i;
}else{
break;
}
}
}
堆排序:初始化先构造一个大根堆,即从最后一个非叶节点开始(下标N/2)直到根节点,都做一次向下调整,就得到初始的大根堆。 若从小到大排序,则将堆顶元素与末端元素交换并将数组长度减一,再对新还上来的堆顶元素进行向下调整,即为一趟堆排序。
int heapSort(int N){
int times = N;
for(int i = N / ; i >= ; i--){ //构造初始大根堆
downAdjust(i, N);
}
for(int i = ; i <= times; i++){
find = ;
swap(num[], num[N]);
N--; //排序区间 -1
downAdjust(, N);
}
return ;
}
2、prt是一次性的,不要在每一趟排序的循环中把将prt置0,这样就无法输出答案了。
3、堆排序下标最好从1开始。
4、注意堆排序的尾部范围每次-1。
A1098. Insertion or Heap Sort的更多相关文章
- PAT A1098 Insertion or Heap Sort (25 分)——堆排序和插入排序,未完待续。。
According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...
- PAT甲级——A1098 Insertion or Heap Sort
According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...
- PTA Insertion or Heap Sort
According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...
- 1098 Insertion or Heap Sort
1098 Insertion or Heap Sort (25 分) According to Wikipedia: Insertion sort iterates, consuming one in ...
- PAT甲级1098. Insertion or Heap Sort
PAT甲级1098. Insertion or Heap Sort 题意: 根据维基百科: 插入排序迭代,消耗一个输入元素每次重复,并增加排序的输出列表.在每次迭代中,插入排序从输入数据中删除一个元素 ...
- PAT甲级——1098 Insertion or Heap Sort (插入排序、堆排序)
本文同步发布在CSDN:https://blog.csdn.net/weixin_44385565/article/details/90941941 1098 Insertion or Heap So ...
- pat1098. Insertion or Heap Sort (25)
1098. Insertion or Heap Sort (25) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yu ...
- pat 甲级 1098. Insertion or Heap Sort (25)
1098. Insertion or Heap Sort (25) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yu ...
- PTA 09-排序3 Insertion or Heap Sort (25分)
题目地址 https://pta.patest.cn/pta/test/16/exam/4/question/676 5-14 Insertion or Heap Sort (25分) Accor ...
随机推荐
- Linux安装jdk环境
前言: 又重新起了一个CentOS7,里面什么都没有,翻出以前CentOS7安装jdk的笔记,现在已经弃用有道云了,用博客比较多,所以把它移过来. 有道云笔记地址(CentOS7安装1.8jdk):h ...
- com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class cn.edu.
详细信息 https://www.cnblogs.com/xuwenjin/p/8832522.html 解决办法: 在实体类上面加上注解 @JsonIgnoreProperties(value ...
- jdbc工具类1.0
package cn.zhouzhou; import java.sql.Connection; import java.sql.Driver; import java.sql.DriverManag ...
- 解决spring多线程不共享事务的问题
在一个事务中使用多线程操作数据库时,若同时存在对数据库的读写操作,可能出现数据读取的不准确,因为多线程将不会共享同一个事务(也就是说子线程和主线程的事务不一样),为了解决这个问题,可以使用spring ...
- powerdesigner 16.5 不允许有扩展属性,或对象不存在
创建完之后这边会出现 选择刚创建的用户 这样就可以了
- js 中常用的循环
参考文章: 1.js几种数组遍历方式以及性能分析对比 2.javaScript遍历对象.数组总结 首先是数组中可以使用的 1.for 循环 for (let i = 0; i < xxx.len ...
- Overrid Equals Defined Operator
public class Common { public override int GetHashCode() { return base.GetHashCode(); } public overri ...
- BZOJ 1443 游戏(二分图博弈)
新知识get. 一类博弈问题,基于以下条件: 1.博弈者人数为两人,双方轮流进行决策.2.博弈状态(对应点)可分为两类(状态空间可分为两个集合),对应二分图两边(X集和Y集).任意合法的决策(对应边) ...
- Qt setStyleSheet
Qt中设置按钮或QWidget的外观是,可以使用QT Style Sheets来进行设置,非常方便.可以用setStyleSheet("font: bold; font-size:20px; ...
- VSCode里面HTML添加CSS时没有提示
看到知乎上的回答,vscode修改设置的: "editor.parameterHints": true, "editor.quickSuggestions": ...