1099: 数列有序!
时间限制: 1 Sec 内存限制: 128 MB题目描述
有n(n<=100)个整数,已经按照从小到大顺序排列好,现在另外给一个整数x,请将该数插入到序列中,并使新的序列仍然有序。
输入
输入数据包含多个测试实例,每组数据由两行组成,第一行是n和m,第二行是已经有序的n个数的数列。n和m同时为0标示输入数据的结束,本行不做处理。
输出
对于每个测试实例,输出插入新的元素后的数列。
样例输入
3 3
1 2 4
0 0
样例输出
1 2 3 4
代码:
#include <iostream> #include <string.h> #include <string> #include <map> #include <algorithm> #include <set> using namespace std; typedef long long ll; multiset <int>::iterator it; int main() { int n,m; while(cin >> n >> m){ if(n == 0&&m == 0) break; multiset <int> s; int key; while(n--) cin >> key,s.insert(key); s.insert(m); for(it = s.begin();it != s.end(); it++){ if(it != s.begin()) cout << " "; cout << *it; } cout << endl; } return 0; } // writen by zhangjiuding