快速排序

作者:追风剑情 发布于:2014-10-5 10:07 分类:Algorithms

开发工具 Visual Studio2010

开发语言 C#

快速排序算法时间复杂度是qqq.gif,而且是不稳定的。


  1. using System;
  2.  
  3. namespace QuickSortTest
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int[] R = new int[] { 9, 5, 7, 1, 3, 2, 6, 8, 4};
  10. QuickSort(R, 0, R.Length-1);
  11.  
  12. for (int i = 0; i < R.Length; i++)
  13. Console.Write(R[i]+" ");
  14.  
  15. Console.ReadKey();
  16. }
  17.  
  18. static void QuickSort(int[] R, int s, int t)
  19. {
  20. int i = s, j = t;
  21. int tmp;
  22. if (s < t) {
  23. tmp = R[s];//用区间的第一个记录作为基准
  24. while (i != j)//从区间两端交替向中间扫描,直至i=j为止
  25. {
  26. //从右向左扫描,找第1个关键字小于tmp的R[j]
  27. while (j > i && R[j] > tmp)
  28. j--;
  29. //找到这样的R[j],则R[i]和R[j]交换
  30. R[i] = R[j];
  31. //从左向右扫描,找第1个关键字大于tmp的R[i]
  32. while (i < j && R[i] < tmp)
  33. i++;
  34. //找到这样的R[i],则R[i]和R[j]交换
  35. R[j] = R[i];
  36. }
  37. R[i] = tmp;
  38. QuickSort(R, s, i-1); //对左区间递归排序
  39. QuickSort(R, i + 1, t); //对右区间递归排序
  40. }
  41. }
  42. }
  43. }


quicksort.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号