输入整型数组和排序标识,对其元素按照升序或降序进行排序

输入整型数组和排序标识,对其元素按照升序或降序进行排序

接口说明

原型:

void sortIntegerArray(Integer[] pIntegerArray, int iSortFlag);

输入参数:

    Integer[] pIntegerArray:整型数组

int  iSortFlag:排序标识:0表示按升序,1表示按降序

输出参数:

    无

返回值:

    void

输入描述:

1、输入需要输入的整型数个数

输出描述:

输出排好序的数字

输入例子:
8
1 2 4 9 3 55 64 25
0
输出例子:
1 2 3 4 9 25 55 64

【代码】
#include <iostream> 
#include <algorithm> 
using namespacestd;  
int main(void
{     int  n;
    while( cin >> n )
       int  a[n],   cmp;
        for(i = 0; i < n; i++)
            cin >> a[i];
        cin >> cmp;

        sort(a, a+n);
        if(cmp == 1)
            reverse(a, a+n); 

        for(i = 0; i < n-1; i++)
            cout << a[i] << ' ';
           cout << a[n-1] << endl;
    }    

考察点:
#include
      
      
       
       
#include
       
       
        
        
int main()
    {
    int i,n,flag,j;
    
    while(scanf("%d",&n)!=EOF)
        {
        int a[1000];
        for(i=0;i
        
        
         
         a[j])
                    {
                int temp=a[i];
                    a[i]=a[j];
                    a[j]=temp;
                }
            }
        }
        else if(flag==1)
            {
             for(i=0;i
         
         
        
        
       
       
      
      


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

屠变恶龙之人

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值