文件名称:sortQuick
- 所属分类:
- 单片机(51,AVR,MSP430等)
- 资源属性:
- [Windows] [Visual.Net] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 6kb
- 下载次数:
- 0次
- 提 供 者:
- Mah****
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
Quicksort sorts by employing a divide and conquer strategy to divide a list into two 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 sort the sub-list of lesser elements and the sub-list of greater elements.
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 sort the sub-list of lesser elements and the sub-list of greater elements.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
sortQuick\sortQuick
.........\.........\Properties
.........\.........\..........\AssemblyInfo.cs
.........\.........\sortQuick.csproj
.........\.........\bin
.........\.........\...\Release
.........\.........\...\.......\sortQuick.exe
.........\.........\Program.cs
.........\sortQuick.sln
sortQuick
.........\.........\Properties
.........\.........\..........\AssemblyInfo.cs
.........\.........\sortQuick.csproj
.........\.........\bin
.........\.........\...\Release
.........\.........\...\.......\sortQuick.exe
.........\.........\Program.cs
.........\sortQuick.sln
sortQuick