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的更多相关文章

  1. PAT A1098 Insertion or Heap Sort (25 分)——堆排序和插入排序,未完待续。。

    According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...

  2. PAT甲级——A1098 Insertion or Heap Sort

    According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...

  3. PTA Insertion or Heap Sort

    According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...

  4. 1098 Insertion or Heap Sort

    1098 Insertion or Heap Sort (25 分) According to Wikipedia: Insertion sort iterates, consuming one in ...

  5. PAT甲级1098. Insertion or Heap Sort

    PAT甲级1098. Insertion or Heap Sort 题意: 根据维基百科: 插入排序迭代,消耗一个输入元素每次重复,并增加排序的输出列表.在每次迭代中,插入排序从输入数据中删除一个元素 ...

  6. PAT甲级——1098 Insertion or Heap Sort (插入排序、堆排序)

    本文同步发布在CSDN:https://blog.csdn.net/weixin_44385565/article/details/90941941 1098 Insertion or Heap So ...

  7. pat1098. Insertion or Heap Sort (25)

    1098. Insertion or Heap Sort (25) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yu ...

  8. pat 甲级 1098. Insertion or Heap Sort (25)

    1098. Insertion or Heap Sort (25) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yu ...

  9. 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 ...

随机推荐

  1. git fetch 和git pull 的差别

    1.git fetch 相当于是从远程获取最新到本地,不会自动merge,如下指令: git fetch orgin master //将远程仓库的master分支下载到本地当前branch中 git ...

  2. eclipse中添加tomcat

    https://blog.csdn.net/Forlogen/article/details/54090335(copy) 为了Java Web的开发,下面我们来安装一下Tomcat服务器,并将其配置 ...

  3. 多线程的实现方式01 Thread

    /* * 多线程 有三种实现方式 * 其一 Thread * * 写一个类 * * 1.让他继承 Thread * 2.重写thread中的run方法 * 3.创建子类对象就是在 创建线程! * 3. ...

  4. easyui 自动动态合并单元格

    .......onLoadSuccess : function(data) { if (data.rows.length > 0) { //调用mergeCellsByField()合并单元格 ...

  5. Lodop“对象不支持SET__LICENSES属性或方法”SET__LICENSES is not a function”

    Lodop中的方法如果书写错误,就会报错:“对象不支持XXX属性或方法”调试JS会报错”SET__LICENSES is not a function” LODOP.SET_LICENSES是加注册语 ...

  6. Nginx 完整安装篇

    第一步安装各种编译库如c++编译库等 yum install -y gcc //安装GCC ...安装过程省略 yum install -y gcc-c++ //安装C++库用来编译c++ ...安装 ...

  7. Codeforces 888G(分治+trie)

    按位贪心,以当前考虑位是0还是1将数分成两部分,则MST中这两部分之间只会存在一条边,因为一旦有两条或以上的边,考虑两条边在原图中所成的环,显然这两条边有一条是环上的权值最大边,不会出现在MST中.则 ...

  8. 数据库 -- mysql支持的数据类型

    mysql支持的数据类型 数值类型 MySQL支持所有标准SQL数值数据类型. 这些类型包括严格数值数据类型(INTEGER.SMALLINT.DECIMAL和NUMERIC),以及近似数值数据类型( ...

  9. P1601 A+B Problem(高精)

    原题链接 https://www.luogu.org/problemnew/show/P1601 这个题提示的很清楚,并非简单的A+B,单纯的long  long型也不行(不要被样例所迷惑).因为lo ...

  10. 大学java教案之MySQL安装图解

    一.MYSQL的安装 1.打开下载的mysql安装文件mysql-5.0.27-win32.zip,双击解压缩,运行"setup.exe". 2.选择安装类型,有"Typ ...