数据结构实验之排序二:交换排序

本文介绍了一个数据结构实验案例,重点在于使用冒泡排序和快速排序两种交换排序方法对整数数组进行排序,并计算各自所需的交换次数。

数据结构实验之排序二:交换排序

Time Limit: 1000MS  Memory Limit: 65536KB
Problem Description

冒泡排序和快速排序都是基于"交换"进行的排序方法,你的任务是对题目给定的N个(长整型范围内的)整数从小到大排序,输出用冒泡和快排对这N个数排序分别需要进行的数据交换次数。

Input

连续多组输入数据,每组数据第一行给出正整数N(N ≤ 10^5),随后给出N个整数,数字间以空格分隔。

Output

输出数据占一行,代表冒泡排序和快速排序进行排序分别需要的交换次数,数字间以1个空格分隔,行末不得有多余空格。

Example Input
8
49 38 65 97 76 13 27 49
Example Output
15 9
Hint

注意:数据相等时不做交换

#include <stdio.h>
#include <string.h>
const int maxn = 1e5+7;
int sum;
void maopao(int a[],int n)
{
    int cnt=0;
    for(int i=0; i<n-1; i++)
    {
        for(int j=i+1; j<n; j++)
        {
            if(a[i] > a[j])
            {
                int t=a[i];
                a[i]=a[j];
                a[j]=t;
                cnt++;
            }
        }
    }
    printf("%d ",cnt);
}
void qsort(int a[],int l,int r)
{
    int i = l, j =r;
    if( l < r)
    {
        int x = a[l];
        while( i < j)
        {
            while( i < j&&a[j] >= x) j--;
            if(i < j)
            {
                a[i++] = a[j];
                sum++;
            }

            while( i < j && a[i] <= x) i++;
            if( i < j)
            {
                a[j--] = a[i];
                sum++;
            }
        }
        a[i] = x;
        qsort(a, l, i-1);
        qsort(a, i+1, r);

    }
}
int main()
{
    int a[maxn],b[maxn];
    int i,j;
    int n,x;
    while(~scanf("%d", &n))
    {
        for( i = 0; i < n; i++)
        {
            scanf("%d", &a[i]);
            b[i]=a[i];
        }
        maopao(a,n);
        sum=0;
        qsort(b,0,n-1);
        printf("%d\n",sum);
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值