根據維基百科的定義:
插入排序是迭代演算法,逐一獲得輸入資料,逐步產生有序的輸出序列。每步迭代中,演算法從輸入序列中取出一元素,將之插入有序序列中正確的位置。如此迭代直到全部元素有序。
歸併排序進行如下迭代操作:首先將原始序列看成 n 個只包含 1 個元素的有序子串行,然後每次迭代歸併兩個相鄰的有序子串行,直到最後只剩下 1 個有序的序列。
現給定原始序列和由某排序演算法產生的中間序列,請你判斷該演算法究竟是哪種排序演算法?
輸入在第一行給出正整數 n (≤100);隨後一行給出原始序列的 n 個整數;最後一行給出由某排序演算法產生的中間序列。這裡假設排序的目標序列是公升序。數字間以空格分隔。
首先在第 1 行中輸出insertion sort
表示插入排序、或merge sort
表示歸併排序;然後在第 2 行中輸出用該排序演算法再迭代一輪的結果序列。題目保證每組測試的結果是唯一的。數字間以空格分隔,且行首尾不得有多餘空格。
10
3 1 2 8 7 5 9 4 6 0
1 2 3 7 8 5 9 4 6 0
insertion sort
1 2 3 5 7 8 9 4 6 0
10
3 1 2 8 7 5 9 4 0 6
1 3 2 8 5 7 4 9 0 6
merge sort
1 2 3 8 4 5 7 9 0 6
#include#includeusing
namespace
std;
const
int maxn = 110
;int
origin[maxn],tempori[maxn],changed[maxn];
void showarray(int a,intn)}
bool issame(int a,int b,int
n)
return
true;}
bool insertionsort(int
n)
int temp = tempori[i], j =i;
while(j > 0 && tempori[j - 1] >temp)
tempori[j] =temp;
if(flag == true) return
true
; }
return
false;}
void mergesort(int
n)
for(int i = 0; i < n; i +=step)
if(flag == true
) }
}int
main()
for(int i = 0; i < n; i++)
if(insertionsort(n))
else
mergesort(n);
}return0;
}
//12分#include#include
using
namespace
std;
const
int maxn = 110
;int
origin[maxn],tempori[maxn],changed[maxn];
intn;
void showarray(inta)}
bool issame(int a,int
b)
return
true;}
bool
insertionsort()
tempori[j] =temp;
if(flag == true) return
true
; }
return
false;}
void
mergesort()}}
}int
main()
for(int i = 0; i < n; i++)
if(insertionsort())
else
mergesort();
}return0;
}
1035 插入與歸併(25 分)
根據維基百科的定義 插入排序是迭代演算法,逐一獲得輸入資料,逐步產生有序的輸出序列。每步迭代中,演算法從輸入序列中取出一元素,將之插入有序序列中正確的位置。如此迭代直到全部元素有序。歸併排序進行如下迭代操作 首先將原始序列看成 n 個只包含 1 個元素的有序子串行,然後每次迭代歸併兩個相鄰的有序子串...
1035 插入與歸併 (25 分)
1035 插入與歸併 25 分 根據維基百科的定義 插入排序是迭代演算法,逐一獲得輸入資料,逐步產生有序的輸出序列。每步迭代中,演算法從輸入序列中取出一元素,將之插入有序序列中正確的位置。如此迭代直到全部元素有序。歸併排序進行如下迭代操作 首先將原始序列看成 n 個只包含 1 個元素的有序子串行,然...
1035 插入與歸併 25 分
根據維基百科的定義 插入排序是迭代演算法,逐一獲得輸入資料,逐步產生有序的輸出序列。每步迭代中,演算法從輸入序列中取出一元素,將之插入有序序列中正確的位置。如此迭代直到全部元素有序。歸併排序進行如下迭代操作 首先將原始序列看成 n 個只包含 1 個元素的有序子串行,然後每次迭代歸併兩個相鄰的有序子串...