其他分享
首页 > 其他分享> > Insertion or Heap Sort

Insertion or Heap Sort

作者:互联网

Insertion or Heap Sort

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

 

解题思路

  和Insert or Merge一样,先挑简单的判断,也就是先判断是不是插入排序,如果不是则为堆排序。

  如果是堆排序,从数组最后一个元素开始往前跟数组第一个元素比较。由于除去数组中已排好序的部分外(也就是数组中放在最后的那些元素),数组第一个元素是最大的。所以从后开始向前比较,如果发现某个元素比数组第一个元素要小,说明找到已排好序的元素个数。然后再进行一次堆排序,向下调整就好了。

  AC代码:

 1 #include <cstdio>
 2 #include <algorithm>
 3 
 4 int main() {
 5     int n;
 6     scanf("%d", &n);
 7     int a[n], ret[n];
 8     for (int i = 0; i < n; i++) {
 9         scanf("%d", a + i);
10     }
11     for (int i = 0; i < n; i++) {
12         scanf("%d", ret + i);
13     }
14     
15     int i, j;
16     for (i = 0; i < n - 1 && ret[i] <= ret[i + 1]; i++);
17     for (j = i + 1; j < n && a[j] == ret[j]; j++);
18     if (j == n) {
19         puts("Insertion Sort");
20         std::sort(ret, ret + i + 2);
21     }
22     else {
23         puts("Heap Sort");
24         int k = n - 1;
25         for ( ; k > 1 && ret[k] >= ret[0]; k--);
26         
27         std::swap(ret[0], ret[k]);
28         int tmp = ret[0], parent = 0;
29         for (int child = 2 * parent + 1; child < k; parent = child, child = 2 * parent + 1) {
30             if (child != k - 1 && ret[child] < ret[child + 1]) child++;
31             if (tmp >= ret[child]) break;
32             else ret[parent] = ret[child];
33         }
34         ret[parent] = tmp;
35     }
36     
37     for (int i = 0; i < n; i++) {
38         if (i) putchar(' ');
39         printf("%d", ret[i]);
40     }
41     
42     return 0;
43 }

标签:Sort,Heap,parent,sequence,int,ret,Insertion,child,line
来源: https://www.cnblogs.com/onlyblues/p/14822262.html