堆排序(二)

作者:追风剑情 发布于:2016-6-20 13:17 分类:Algorithms

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace HeapSortTest
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. //测试数据, 有效值从R[1]开始
  13. List<int> R = new List<int>() { 0, 75, 87, 68, 92, 88, 61, 77, 96, 80, 72 };
  14. Console.Write("测试数据: ");
  15.  
  16. //创建一个有序堆对象,并添加测试数据。
  17. HeapSort heap = new HeapSort();
  18. for (int i = 1; i < R.Count; i++)
  19. {
  20. Console.Write(R[i] + " ");
  21. heap.Push(R[i]);
  22. }
  23.  
  24. Console.WriteLine();
  25.  
  26. Console.Write("依次移除堆中数据: " );
  27. int r1;
  28. while((r1 = heap.Shift()) != -1){
  29. Console.Write(r1 + " ");
  30. }
  31.  
  32. Console.Read();
  33. }
  34. }
  35.  
  36. /// <summary>
  37. /// 有序堆
  38. /// </summary>
  39. public class HeapSort
  40. {
  41. List<int> R;
  42.  
  43. public HeapSort()
  44. {
  45. R = new List<int>();
  46. //堆排序不会用到0号元素,这里设个占位符。
  47. R.Add(-1);
  48. }
  49.  
  50. //筛选方法
  51. private void SiftLess(List<int> R, int low, int high)
  52. {
  53. int i = low, j = 2 * i;
  54. int tmp = R[i];
  55. while (j <= high)
  56. {
  57. if (j < high && R[j] > R[j + 1])
  58. {
  59. j++;
  60. }
  61. if (tmp > R[j])
  62. {
  63. R[i] = R[j];
  64. i = j;
  65. j = 2 * i;
  66. }
  67. else
  68. {
  69. break;
  70. }
  71. }
  72. R[i] = tmp;
  73. }
  74.  
  75. //添加元素
  76. public void Push(int value)
  77. {
  78. R.Add(value);
  79. int high = R.Count - 1;
  80. int i = high / 2;//最后一个元素的父节点索引
  81. int j = high;//最后一个元素索引
  82. int tmp;
  83.  
  84. while (i >= 1)
  85. {
  86. if (R[i] > R[j])
  87. {
  88. tmp = R[i];
  89. R[i] = R[j];
  90. R[j] = tmp;
  91. j = i;
  92. i /= 2;
  93. }
  94. else
  95. {
  96. break;
  97. }
  98. }
  99. }
  100.  
  101. //移除根元素
  102. public int Shift()
  103. {
  104. int high = R.Count - 1;
  105.  
  106. if (high <= 1)
  107. return -1;
  108.  
  109. int r1;
  110. if (high <= 3)
  111. {
  112. r1 = R[1];
  113. R.RemoveAt(1);
  114. return r1;
  115. }
  116.  
  117. r1 = R[1];
  118. R[1] = R[high];
  119. R.RemoveAt(high);
  120. SiftLess(R, 1, high - 1);
  121.  
  122. return r1;
  123. }
  124. }
  125. }

运行测试

11111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号