首页 技术 正文
技术 2022年11月21日
0 收藏 672 点赞 4,125 浏览 3261 个字

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。

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,997
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,511
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,356
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,139
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,770
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,848