基数排序

作者:追风剑情 发布于:2019-6-22 17:12 分类:Algorithms

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Reflection;
  6. using System.Data.SQLite;
  7.  
  8. namespace ConsoleApp4
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. int[] arr = { 79, 48, 65, 10, 55};
  15. int r = 10;
  16. int d = 2;
  17. int[] arr1 = RadixSortHelper.Sort(arr, r, d);
  18.  
  19. Console.Write("原数组:");
  20. for (int i = 0; i < arr.Length; i++)
  21. Console.Write(arr[i] + " ");
  22.  
  23. Console.WriteLine();
  24.  
  25. Console.Write("排序后:");
  26. for (int i = 0; i < arr1.Length; i++)
  27. Console.Write(arr1[i] + " ");
  28.  
  29. Console.ReadKey();
  30. }
  31. }
  32.  
  33. public class RadixSortHelper
  34. {
  35. /// <summary>
  36. /// 基数排序
  37. /// 原理:
  38. /// 如果关键字为整数,先按关键字的个位排序,再按关键字的十位排序,......
  39. /// 基数排序是稳定的,时间复杂度为O(d(n+r))
  40. /// </summary>
  41. /// <param name="arr">待排序数组</param>
  42. /// <param name="r">基数,如:十进制就为10</param>
  43. /// <param name="d">关键字位数</param>
  44. public static int[] Sort(int[] arr, int r, int d)
  45. {
  46. //需要用到一个辅助队列
  47. Node[] nodes = new Node[r];
  48. for (int i = 0; i < r; i++)
  49. nodes[i] = new Node();
  50.  
  51. for (int i = 0; i < d; i++)
  52. {
  53. for (int j = 0; j < arr.Length; j++)
  54. {
  55. int a = arr[j];
  56. int k = Conversion(a, i);
  57. //将数据分配到队列中
  58. nodes[k].list.Add(a);
  59. }
  60. //从队列中重新收集数据
  61. arr = Allocation(nodes);
  62. }
  63. return arr;
  64. }
  65.  
  66. private static int[] Allocation(Node[] nodes)
  67. {
  68. List<int> list = new List<int>();
  69. for(int i=0; i<nodes.Length; i++)
  70. {
  71. Node node = nodes[i];
  72. if (node.list.Count > 0)
  73. {
  74. list.AddRange(node.list.ToArray());
  75. node.list.Clear();
  76. }
  77. }
  78. return list.ToArray();
  79. }
  80.  
  81. private static int Conversion(int x, int i)
  82. {
  83. switch(i)
  84. {
  85. case 0: //提取x的个位数
  86. x = x % 10;
  87. break;
  88. case 1: //提取x的十位数
  89. x = x / 10;
  90. break;
  91. default:
  92. x = x / (int)Math.Pow(10, i);
  93. break;
  94. }
  95. return x;
  96. }
  97.  
  98. private class Node
  99. {
  100. public List<int> list = new List<int>();
  101. }
  102. }
  103. }

运行测试

1111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号