c语言 快速排序

本文详细介绍了C语言中快速排序算法的实现过程,包括选取基准元素、左右指针移动以及递归排序基准元素两侧的子数组。通过示例代码展示了如何对整型数组进行排序,并给出了排序后的结果。此外,还提供了参考博客链接供深入学习。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

文章目录

1.代码

#include "stdio.h"

//快速排序
void quickSort(int arr[],int left, int right){
    int ch[3] = {0};
    int tempLeft = left;
    int tempRight = right;
    //选取最左边的为基准元素
    int temp = arr[left];
    int compareRight = 1;
    while (left != right) {
        if (compareRight == 1) {
            //temp和右边的数比
            if(temp > arr[right]){
                arr[left] = arr[right];
                left++;
                compareRight = 0;
            }else{
                right--;
            }
        }else{
            //temp和左边的数比
            if (temp < arr[left]) {
                arr[right] = arr[left];
                right--;
                compareRight = 1;
            }else{
                left++;
            }
        }
    }
    arr[left] = temp;
    //排序基准元素左边的
    if (tempLeft < (left-1)) {
        quickSort(arr, tempLeft, left-1);
    }
    //排序基准元素右边的
    if (tempRight > left+1) {
        quickSort(arr, left+1, tempRight);
    }
 }

int main()
{
    int numArr[] = {3,5,4,6,2,45,22};
    int len = sizeof(numArr)/sizeof(int);
    quickSort(numArr,0,len-1);
    for (int i = 0; i < len; i++) {
        printf("%d\n",numArr[i]);
    }
}

打印结果:
2
3
4
5
6
22
45
Program ended with exit code: 0

2.参考博客

iOS swift 选择排序 冒泡排序 快速排序 - 我的
C语言-快速排序算法-原理-详解(完整代码)- csdn

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值