- ZONE-ROUTING-PROTOCOL ZONE ROUTING PROTOCOL
- attachments_2010_05_06 ytrvuore mnbvujtreifvybk nmlrov
- VC-The-image-smooth-etc digital image processing
- way2smsapi Again one more api list for PHP in web application and website to send sms your application
- sale2 基于FSM的自动售货机程序.通过FSM(有限状态机)完成投币
- 智能计算器 基于51单片机 可以实现小范围数据的计算
文件名称:QuickSort
-
所属分类:
- 标签属性:
- 上传时间:2013-05-30
-
文件大小:5kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
Quicksort is a divide and conquer algorithm. Quicksort first divides a large list into two smaller sub-lists: the low elements and the high elements. Quicksort can then recursively sort the sub-lists.
The steps are:
Pick an element, called a pivot, from the list.
Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation.
Recursively apply the above steps to the sub-list of elements with smaller values and separately the sub-list of elements with greater values.
The base case of the recursion are lists of size zero or one, which never need to be sorted.
The steps are:
Pick an element, called a pivot, from the list.
Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation.
Recursively apply the above steps to the sub-list of elements with smaller values and separately the sub-list of elements with greater values.
The base case of the recursion are lists of size zero or one, which never need to be sorted.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
QuickSort/
QuickSort/main.c
QuickSort/main.o
QuickSort/makefile
QuickSort/quicksort.c
QuickSort/quicksort.h
QuickSort/quicksort.o
QuickSort/main.c
QuickSort/main.o
QuickSort/makefile
QuickSort/quicksort.c
QuickSort/quicksort.h
QuickSort/quicksort.o
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.