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.
Merge sort works as follows: Divide the unsorted list into N sublists, each containing 1 element (a list of 1 element is considered sorted). Then repeatedly merge two adjacent sublists to produce new sorted sublists until there is only 1 sublist remaining.
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 "Merge 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 0 6
1 3 2 8 5 7 4 9 0 6
Sample Output 2:
Merge Sort
1 2 3 8 4 5 7 9 0 6
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main(){
int n;
cin >> n;
vector<int> fir_num(n);
vector<int> sen_num(n);
vector<int> out_num(n);
for(int i = 0; i < n; i++){
scanf("%d", &fir_num[i]);
}
for(int i = 0; i < n; i++){
scanf("%d", &sen_num[i]);
}
int flag = 1;
while (sen_num[flag - 1] <= sen_num[flag] && flag < n)
{
flag++;
}
int index = flag;
while (sen_num[flag] == fir_num[flag] && flag < n)
{
flag++;
}
if(flag == n){
printf("Insertion Sort\n");
sort(sen_num.begin(), sen_num.begin() + index + 1);
for(int i = 0; i < sen_num.size(); i++){
printf("%s%d", i == 0 ? "" : " ", sen_num[i]);
}
printf("\n");
}else
{
printf("Merge Sort\n");
int len = 2;
bool m = true;
while (len < n)
{
int q = 0;
while (q < n)
{
sort(fir_num.begin() + q, (q + len) < n ? fir_num.begin() + q + len : fir_num.end());
q = q + len;
}
if(!m){
m = true;
break;
}
if(fir_num == sen_num){
m = false;
}
len = len * 2;
}
if(!m){
sort(fir_num.begin(), fir_num.end());
}
for(int i = 0; i < fir_num.size(); i++){
printf("%s%d", i == 0 ? "" : " ", fir_num[i]);
}
printf("\n");
}
return 0;
}
本文深入探讨了两种经典的排序算法——插入排序和归并排序的工作原理。通过对比它们的操作流程,帮助读者理解每种算法的特性及适用场景。同时,通过具体的输入输出示例,展示了如何判断给定部分排序的序列是由哪种算法产生的。
672

被折叠的 条评论
为什么被折叠?



