博客
关于我
快速排序-超级详细代码注释!
阅读量:551 次
发布时间:2019-03-09

本文共 1140 字,大约阅读时间需要 3 分钟。

为了实现快速排序,我们需要选择一个枢轴元素,将数组分为左右两部分,分别递归排序。以下是详细步骤:

  • 读取输入:读取整数N和N个整数,存入数组。
  • 快速排序函数:定义一个递归函数,选择枢轴元素,移动左右元素,递归处理子数组。
  • 处理右边元素:从右边开始,移动所有小于等于枢轴的元素到右边的位置。
  • 处理左边元素:从左边开始,移动所有大于等于枢轴的元素到右边的位置。
  • 交换枢轴位置:将枢轴移动到正确的位置,然后递归处理左右子数组。
  • 以下是实现代码:

    #include 
    #include
    #include
    #include
    #include
    using namespace std;void qst(int a[], int l, int r) { if (l >= r) return; int key = a[l]; int i = l + 1; int j = r; // 将右边所有小于等于key的元素移到j的位置 while (j > l && a[j] <= key) { j--; } // 将左边所有大于key的元素移到i的位置 while (i <= j && a[i] > key) { a[j] = a[i]; j--; i++; } a[j] = key; // 递归处理左右子数组 qst(a, l, j - 1); qst(a, j + 1, r);}int main() { int n; cin >> n; int a[n]; for (int i = 0; i < n; i++) { scanf("%d", &a[i]); } qst(a, 0, n - 1); for (int i = 0; i < n; i++) { printf("%d ", a[i]); } return 0;}

    代码解释

  • 读取输入:使用scanf读取输入数据,存入数组a
  • 快速排序函数qst
    • 选择左边的元素作为枢轴key
    • 从右边开始,移动所有小于等于key的元素到右边。
    • 从左边开始,移动所有大于key的元素到右边。
    • 将枢轴移动到正确的位置。
    • 递归处理左右子数组。
  • 输出结果:打印排序后的数组元素。
  • 该实现确保了快速排序的正确性,时间复杂度为O(N log N),适用于N ≤ 10^5。

    转载地址:http://lpzsz.baihongyu.com/

    你可能感兴趣的文章
    no available service ‘default‘ found, please make sure registry config corre seata
    查看>>
    No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
    查看>>
    no connection could be made because the target machine actively refused it.问题解决
    查看>>
    No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
    查看>>
    No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
    查看>>
    No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
    查看>>
    No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
    查看>>
    No mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
    查看>>
    No module named 'crispy_forms'等使用pycharm开发
    查看>>
    No module named cv2
    查看>>
    No module named tensorboard.main在安装tensorboardX的时候遇到的问题
    查看>>
    No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
    查看>>
    No new migrations found. Your system is up-to-date.
    查看>>
    No qualifying bean of type XXX found for dependency XXX.
    查看>>
    No qualifying bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs<?>‘ available
    查看>>
    No resource identifier found for attribute 'srcCompat' in package的解决办法
    查看>>
    no session found for current thread
    查看>>
    No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
    查看>>
    NO.23 ZenTaoPHP目录结构
    查看>>
    no1
    查看>>