博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
编程算法 - 切割排序 代码(C)
阅读量:5317 次
发布时间:2019-06-14

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

切割排序 代码(C)

本文地址: http://blog.csdn.net/caroline_wendy

排序切割, 把一个数组分为, 大于k\小于k\等于k的三个部分.

能够使用高速排序的Partition函数, 进行处理, 把大于k的放在左边, 小于k的放在右边.

使用一个变量记录中间的位置, 则时间复杂度O(3n/2).

代码:

/* * main.cpp * *  Created on: 2014.9.18 *      Author: Spike *//*eclipse cdt, gcc 4.8.1*/#include 
#include
#include
#include
#include
using namespace std;int RandomInRange(int min, int max) { return rand()%(max-min+1) + min;}void Swap(int* num1, int* num2) { int tmp = *num1; *num1 = *num2; *num2 = tmp;}int PartitionK (int data[], int length, int k){ if (data == NULL || length <= 0) return -1; int small = -1; int index = 0; for (index=0; index
=pos; index--) { if (data[index] > k) { small--; if (small != index) Swap(&data[small], &data[index]); } } return --small;}int main (void){ int data[] = {1, 3, 2, 5, 2, 0, 5, 2, -1, 0, 4}; int length = sizeof(data)/sizeof(data[0]); PartitionK(data, length, 2); for (int i=0; i
输出:

1 0 -1 0 2 2 2 3 5 5 4

版权声明:本文博客原创文章,博客,未经同意,不得转载。

转载于:https://www.cnblogs.com/zfyouxi/p/4687531.html

你可能感兴趣的文章
管道,数据共享,进程池
查看>>
CSS
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>