Pat(Advanced Level)Practice--1098( Insertion or Heap Sort)

来源:互联网 发布:python脚本服务器部署 编辑:程序博客网 时间:2024/06/01 18:24

Pat1098代码

题目描述:

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.

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:
103 1 2 8 7 5 9 4 6 01 2 3 7 8 5 9 4 6 0
Sample Output 1:
Insertion Sort1 2 3 5 7 8 9 4 6 0
Sample Input 2:
103 1 2 8 7 5 9 4 6 06 4 5 1 0 3 2 7 8 9
Sample Output 2:
Heap Sort5 4 3 1 0 2 6 7 8 9

AC代码:
#include<cstdio>#include<cstdlib>#include<iostream>#include<algorithm>#include<functional>#define MAXN 105using namespace std;int original[MAXN],temp[MAXN],ans[MAXN];int n;bool isEqual(int a[],int b[]){for(int i=0;i<n;i++){if(a[i]!=b[i]){return false;}}return true;}void output(int a[]){printf("%d",a[0]);for(int i=1;i<n;i++){printf(" %d",a[i]);}printf("\n");}bool isInsert(){int flag=0;for(int i=2;i<=n;i++){if(flag&&!isEqual(ans,temp)){printf("Insertion Sort\n");output(ans);return true;}sort(ans,ans+i);if(isEqual(ans,temp)){flag=1;}}return false;}bool isHeapSort(){int flag=0;for(int i=n;i>=2;i--){if(flag&&!isEqual(original,temp)){printf("Heap Sort\n");output(original);return true;}make_heap(original,original+i);pop_heap(original,original+i);if(isEqual(original,temp)){flag=1;}}return false;}int main(int argc,char *argv[]){scanf("%d",&n);for(int i=0;i<n;i++){scanf("%d",&original[i]);ans[i]=original[i];}for(int i=0;i<n;i++){scanf("%d",&temp[i]);}if(!isInsert()){isHeapSort();}return 0;}

模拟排序,强大的STL!
0 0
原创粉丝点击