posts - 99,  comments - 8,  trackbacks - 0
#include <iostream>
#
include <algorithm>
using namespace std;

int main ()
{
    int a[
1005];
    int t;
    scanf ( 
"%d"&t );
    
while ( t -- )
    {
          int n;
          scanf ( 
"%d"&n );
          
for ( int i = 0; i < n; i ++ )
          {
              scanf (
"%d"&a[i]);
          }
          sort ( a, a 
+ n );
          
          printf (
"%d", a[0]);
          
for ( int i = 1; i < n; i ++ )
          {
              printf (
" %d",a[i]);
          }
          printf (
"\n");
    } 
   
//system ("pause");
   
return 0;
}
简单的排序题,直接利用sort默认的排序规则:升序排列
posted on 2010-09-06 21:19 雪黛依梦 阅读(282) 评论(0)  编辑 收藏 引用 所属分类: 简单题排序题

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   博问   Chat2DB   管理


<2010年8月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(4)

随笔分类

随笔档案

文章档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜