A1089. Insert or Merge
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 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 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<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
void merge(int num[], int low1, int high1, int low2, int high2){
int temp[];
int index = , i = low1, j = low2;
while(i <= high1 && j <= high2){
if(num[i] < num[j])
temp[index++] = num[i++];
else
temp[index++] = num[j++];
}
while(i <= high1)
temp[index++] = num[i++];
while(j <= high2)
temp[index++] = num[j++];
for(int k = ; k < index; k++)
num[low1 + k] = temp[k];
}
int comp(int num1[], int num2[], int len){
for(int i = ; i < len; i++){
if(num1[i] != num2[i])
return ;
}
return ;
}
void mergeSort(int num[], int num2[], int len){
int isSame = , show = ;
for(int step = ; step / <= len; step *= ){
for(int i = ; i < len; i += step){
int mid = i + step / - ;
merge(num, i, mid, mid + , min(i + step - , len - ));
}
isSame = comp(num, num2, len);
if(isSame == ){
show = ;
continue;
}
if(show == ){
printf("Merge Sort\n");
printf("%d", num[]);
for(int i = ; i < len; i++)
printf(" %d", num[i]);
return;
}
}
}
void inser(int num[], int num2[], int len){
int isSame = , show = ;
for(int i = ; i < len; i++){
int temp = num[i];
int j = i - ;
while(j >= && temp < num[j]){
num[j + ] = num[j];
j--;
}
num[j + ] = temp;
isSame = comp(num, num2, len);
if(isSame == ){
show = ;
continue;
}
if(show == ){
printf("Insertion Sort\n");
printf("%d", num[]);
for(int i = ; i < len; i++)
printf(" %d", num[i]);
return;
}
}
}
int main(){
int N, num1[], num1_[], num2[];
scanf("%d", &N);
for(int i = ; i < N; i++){
scanf("%d", &num1[i]);
num1_[i] = num1[i];
}
for(int i = ; i < N; i++){
scanf("%d", &num2[i]);
}
mergeSort(num1, num2, N);
inser(num1_, num2, N);
cin >> N;
return ;
}
总结:
1、归并排序, 合并函数:
void merge(int num[], int low1, int high1, int low2, int high2){
int temp[];
int index = , i = low1, j = low2;
while(i <= high1 && j <= high2){
if(num[i] < num[j])
temp[index++] = num[i++];
else
temp[index++] = num[j++];
}
while(i <= high1)
temp[index++] = num[i++];
while(j <= high2)
temp[index++] = num[j++];
for(int k = ; k < index; k++)
num[low1 + k] = temp[k];
}
非递归写法:
void mergeSort(int num[], int len){
for(int step = ; step <= len; step *= ){ //初始步长为2, 逐步变为4、8、16
for(int i = ; i < len; i += step){ //i + step为每个子区间的首部
int mid = i + step / - ;
merge(num, i, mid, mid + , min(i + step - , len - ));
}
}
}
2、插入排序:将a[0]至a[i]视作有序序列,将a[i + 1]插入a[0]至a[i]中,使之有序。
void inser(int num[], int len){
for(int i = ; i < len; i++){
int temp = num[i];
int j = i - ;
while(j >= && temp < num[j]){
num[j + ] = num[j];
j--;
}
num[j + ] = temp;
}
}
3、注意,排序用的num数组需要两个,归并排序之后num数组已经改变,不可再用于插入排序。
A1089. Insert or Merge的更多相关文章
- A1089 Insert or Merge (25 分)
一.技术总结 看到是一个two pointers问题,核心是要理解插入排序和归并排序的实现原理,然后判断最后实现 可以知道a数组和b数组怎么样判断是插入排序还是归并排序,因为插入排序是来一个排一个,所 ...
- PAT甲级——A1089 Insert or Merge
According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...
- PAT_A1089#Insert or Merge
Source: PAT A1089 Insert or Merge (25 分) Description: According to Wikipedia: Insertion sort iterate ...
- PTA Insert or Merge
According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...
- 60. Insert Interval && Merge Intervals
Insert Interval Given a set of non-overlapping intervals, insert a new interval into the intervals ( ...
- 【题解】【区间】【二分查找】【Leetcode】Insert Interval & Merge Intervals
Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessa ...
- PAT甲级1089. Insert or Merge
PAT甲级1089. Insert or Merge 题意: 根据维基百科: 插入排序迭代,消耗一个输入元素每次重复,并增加排序的输出列表.每次迭代,插入排序从输入数据中删除一个元素,在排序列表中找到 ...
- PAT 1089 Insert or Merge[难]
1089 Insert or Merge (25 分) According to Wikipedia: Insertion sort iterates, consuming one input ele ...
- PAT1089. Insert or Merge
PAT1089. Insert or Merge 题目大意 给定一个初始序列src, 一个排序当中的序列tar, 问排序方式是 Insert Sort, 或者 Merge Sort. 并输出下一次迭代 ...
随机推荐
- mysql主从同步(2)-问题梳理
之前详细介绍了Mysql主从复制的原理和部署过程,在mysql同步过程中会出现很多问题,导致数据同步异常.以下梳理了几种主从同步中可能存在的问题:1)slave运行过慢不能与master同步,也就是M ...
- mysql启动后随即关闭问题解决(ibdata1文件损坏导致)
机房一台服务器上的mysql运行一段时间了,突然出现了一个很奇怪的现象:重启后无法恢复了!准确情况是:启动mysql后随即就又关闭了. 查看mysql错误日志如下: 160920 22:41:41 m ...
- kvm虚拟化管理平台WebVirtMgr部署-完整记录(2)
继上一篇kvm虚拟化管理平台WebVirtMgr部署-完整记录(1),接下来说说WebVirtMgr的日常配置:添加宿主机,创建虚机,磁盘扩容,快照等具体操作记录如下: 一.配置宿主机1.登录WebV ...
- 基于 CentOS 搭建 FTP 文件服务
https://www.linuxidc.com/Linux/2017-11/148518.htm
- Hibernate_HQL
public class According_condition { public static void main(String[]args){ Session session=HibernateU ...
- 5-Python3从入门到实战—基础之数据类型(列表-List)
Python从入门到实战系列--目录 列表定义 list:列表(list)是Python内置的一种数据类型,list是一种有序的集合,索引从0开始,可以进行截取.组合等: //创建列表 list1 = ...
- opencv学习笔记(一)
摘要:最近要做一个和图像处理有联系的项目,从此走上了学习opencv的道路. 灰度图:2维矩阵 彩色图:3维矩阵 ps:目前大部分设备都是用无符号 8 位整数(类型为 CV_8U)表示像素亮度 Mat ...
- shell脚本--显示文本内容
shell脚本显示文本内容及相关的常用命令有cat.more.less.head.tail.nl 首先是cat,cat最常用的就是一次性显示文件的所有内容,如果一个文件的内容很多的话,那么就不是很方便 ...
- PAT 1019 数字黑洞
https://pintia.cn/problem-sets/994805260223102976/problems/994805302786899968 给定任一个各位数字不完全相同的4位正整数,如 ...
- Why yarn
http://www.cnblogs.com/LeftNotEasy/archive/2012/02/18/why-yarn.html https://www.ibm.com/developerwor ...