Problem C: 快速排序

Problem C: 快速排序

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

输入n(n<=10万)和 你 个 0 到 1亿的整数,然后将这些数字从小到大排序。


提示:

将对一个长度为n的数组a排序(a[1]到a[n]进行排序)

sort(a+1,a+n+1);

Sample Input Copy

6
99999 999999 99 999 9999 9

Sample Output Copy

9 99 999 9999 99999 999999