元素插入有序数组
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
给你一个整数 和一个数列,这个数列保证从小到大排列,现要求将这个整数 插入到数列中,使新的数列仍然从小到大排列。
输入格式
输入三行
第一行是所需插入的一个整数
第二行是数列的个数
第三行数列中若干个数,这个数列保证从小到大排列
输出格式
一行整数:新的数列(空格隔开)
2
4
1 3 4 5
1 2 3 4 5