用c#進行快速排序
using System;
namespace QuickSorter
{
public class QuickSorter
{
private void Swap(ref int l,ref int r)
{
int s;
s=l;
l=r;
r=s;
}
public void Sort(int [] list,int low,int high)
{
int pivot;
int l,r;
int mid;
if(high<=low)
return;
else if(high==low+1)
{
if(list[low]>list[high])
Swap(ref list[low],ref list[high]);
return;
}
mid=(low+high)>>1;
pivot=list[mid];
Swap(ref list[low],ref list[mid]);
l=low+1;
r=high;
do
{
while(l<=r&&list[l]<pivot)
l++;
while(list[r]>=pivot)
r--;
if(l<r)
Swap(ref list[l],ref list[r]);
}while(l<r);
list[low]=list[r];
list[r]=pivot;
if(low+1<r)
Sort(list,low,r-1);
if(r+1<high)
Sort(list,r+1,high);
}
}
public class MainClass
{
public static void Main()
{
int[] iArrary=new int[]{1,5,3,6,10,55,9,2,87,12,34,75,33,47};
QuickSorter q=new QuickSorter();
q.Sort(iArrary,0,13);
for(int m=0;m<=13;m++)
Console.WriteLine("{0}",iArrary[m]);
}
}
}
namespace QuickSorter
{
public class QuickSorter
{
private void Swap(ref int l,ref int r)
{
int s;
s=l;
l=r;
r=s;
}
public void Sort(int [] list,int low,int high)
{
int pivot;
int l,r;
int mid;
if(high<=low)
return;
else if(high==low+1)
{
if(list[low]>list[high])
Swap(ref list[low],ref list[high]);
return;
}
mid=(low+high)>>1;
pivot=list[mid];
Swap(ref list[low],ref list[mid]);
l=low+1;
r=high;
do
{
while(l<=r&&list[l]<pivot)
l++;
while(list[r]>=pivot)
r--;
if(l<r)
Swap(ref list[l],ref list[r]);
}while(l<r);
list[low]=list[r];
list[r]=pivot;
if(low+1<r)
Sort(list,low,r-1);
if(r+1<high)
Sort(list,r+1,high);
}
}
public class MainClass
{
public static void Main()
{
int[] iArrary=new int[]{1,5,3,6,10,55,9,2,87,12,34,75,33,47};
QuickSorter q=new QuickSorter();
q.Sort(iArrary,0,13);
for(int m=0;m<=13;m++)
Console.WriteLine("{0}",iArrary[m]);
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-548875/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 用“歸併”改進“快速排序” (轉)排序
- C# JSON按key進行排序C#JSON排序
- 在命令列用 sort 進行排序命令列排序
- C#演算法-------(四)快速排序 (轉)C#演算法排序
- 用c#進行遞迴組合C#遞迴
- nlssort可以用來進行語言排序排序
- C#程式碼實現對HTTP POST引數進行排序C#HTTP排序
- 對字典進行排序排序
- C# 中使用Linq和Lambda表示式對List進行排序C#排序
- Python進階-演算法-快速排序Python演算法排序
- 用xgboost模型對特徵重要性進行排序模型特徵排序
- 排序之快速排序排序
- 排序:氣泡排序&快速排序排序
- 中位數應用:輸油管道問題--快速排序、改進、變種排序
- 進階指南--超快速排序(歸併+逆序對)排序
- 快速排序排序
- 用C#實現撲克牌排序C#排序
- 快速排序&&歸併排序排序
- Python對字典進行排序Python排序
- 陣列進行排序的方法陣列排序
- 對N個數進行排序排序
- java對中文(拼音)進行排序Java排序
- 在ListCtrl中進行排序 (轉)排序
- c#實現最簡快速排序,你絕對可以看懂C#排序
- 快速排序快速入門排序
- 四、歸併排序 && 快速排序排序
- 選擇排序和快速排序排序
- 排序演算法__快速排序排序演算法
- 排序演算法:快速排序排序演算法
- 排序演算法-快速排序排序演算法
- 排序演算法——快速排序排序演算法
- 排序演算法 - 快速排序排序演算法
- 快速排序法排序
- java 快速排序Java排序
- 快速排序javaScript排序JavaScript
- js 快速排序JS排序
- javascript 快速排序JavaScript排序
- 分治—快速排序排序