摘要: 解题思路: 首先判断是否为插入排序的中间序列,如果不是则为归并排序 判断方法很简单,插入排序前面一定有一段序列是非递减的,而后面的序列是和原序列相同的 include include using namespace std; int main() { int n; cin n; int a[102] 阅读全文
posted @ 2019-02-26 20:05 Chance-Zou 阅读(1335) 评论(0) 推荐(0)