博客
关于我
快速排序-超级详细代码注释!
阅读量: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/

    你可能感兴趣的文章
    org.apache.poi.hssf.util.Region
    查看>>
    org.apache.xmlbeans.XmlOptions.setEntityExpansionLimit(I)Lorg/apache/xmlbeans/XmlOptions;
    查看>>
    org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
    查看>>
    org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:processDebugManifest'
    查看>>
    org.hibernate.HibernateException: Unable to get the default Bean Validation factory
    查看>>
    org.hibernate.ObjectNotFoundException: No row with the given identifier exists:
    查看>>
    org.springframework.amqp.AmqpConnectException:java.net.ConnectException:Connection timed out:connect
    查看>>
    org.springframework.beans.factory.BeanDefinitionStoreException
    查看>>
    org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata
    查看>>
    org.springframework.boot:spring boot maven plugin丢失---SpringCloud Alibaba_若依微服务框架改造_--工作笔记012
    查看>>
    SQL-CLR 类型映射 (LINQ to SQL)
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded
    查看>>
    org.tinygroup.serviceprocessor-服务处理器
    查看>>
    org/eclipse/jetty/server/Connector : Unsupported major.minor version 52.0
    查看>>
    org/hibernate/validator/internal/engine
    查看>>
    Orleans框架------基于Actor模型生成分布式Id
    查看>>
    SQL-36 创建一个actor_name表,将actor表中的所有first_name以及last_name导入改表。
    查看>>
    ORM sqlachemy学习
    查看>>