计数排序的核心在于将输入的数据值转化为键存储在额外开辟的数组空间中。作为一种线性时间复杂度的排序,计数排序要求输入的数据必须是有确定范围的整数。当输入的元素是 n 个 0 到 k 之间的整数时,它的运行时间是 O(n + k),计数排序不是比较排序,排序的速度快于任何比较排序算法。
计数排序.gif
其思路是开辟一个长度为 maxValue+1(maxValue为待排序数据中最大值) 的统计数组,然后以待排序数组中的数值作为下标,对统计数组中对应位置的值进行+1操作,来统计该下标值出现的次数(即统计数组的下标为排序的值,统计数组下标位置存储的值作为该排序的值在原数组中出现的次数),然后再遍历统计数组,按照每一位出现的次数,输出到新的数组或者原数组中。
算法步骤:

  1. - 1)找到最大值。
  2. - 2)遍历原数组,将值对应统计数组下标位置的值+1
  3. - 3)遍历统计数组,输出到原数组或者新的数组。

一 普通实现方式

  1. package com.sort.s08countingsort;
  2. import org.junit.Test;
  3. import java.util.Arrays;
  4. public class CountingSortA {
  5. /**
  6. * (1)找到最大值。
  7. * (2)遍历原数组,将值对应统计数组下标位置的值+1。
  8. * (3)遍历统计数组,输出到原数组或者新的数组。
  9. */
  10. public int[] sort(int[] sourceArray){
  11. // 对数组进行拷贝,不改变参数内容
  12. int[] arrToSort = Arrays.copyOf(sourceArray, sourceArray.length);
  13. // (1)找到最大值
  14. int maxValue = findMaxValue(arrToSort);
  15. // 排序
  16. return countingSort(maxValue,arrToSort);
  17. }
  18. private int findMaxValue(int[] arr){
  19. int maxValue = arr[0];
  20. for(int value : arr ){
  21. maxValue=maxValue<value?value:maxValue;
  22. }
  23. return maxValue;
  24. }
  25. private int[] countingSort(int maxValue,int[] arr){
  26. // 记住,数组长度和数组统计位置是不同的,最大值为10时,要能统计10的次数,就要开辟的统计数组长度为11.
  27. int[] bucketArr = new int[maxValue+1];
  28. //(2)遍历原数组,将值对应统计数组下标位置的值+1。
  29. for(int value:arr){
  30. bucketArr[value]++;
  31. }
  32. //(3)遍历统计数组,输出到原数组或者新的数组。
  33. int sortIndex = 0;
  34. for(int bc = 0;bc<=maxValue;bc++){
  35. int count = bucketArr[bc];
  36. while(count >0){
  37. arr[sortIndex] = bc;
  38. count --;
  39. sortIndex++;
  40. }
  41. }
  42. return arr;
  43. }
  44. @Test
  45. public void testSort(){
  46. int[] nums = {5, 3, 4, 6, 7, 1, 2, 8, 4, 10, 100, 50, 30, 22, 34, 55, 43, 12, 31};
  47. CountingSortA countingSortA = new CountingSortA();
  48. countingSortA.println(countingSortA.sort(nums));
  49. }
  50. // 用于输出数组
  51. public void println(int [] a) {
  52. for(int x:a) {
  53. System.out.print(" "+x);
  54. }
  55. System.out.println("");
  56. }
  57. }

二 改进一下实现

找到待排序数组中最大值和最小值,统计数组的0号位置存储最小值出现的次数,因此,最大值存储的位置在maxValue-minValue,而统计数组的长度为maxValue-minValue+1。如:假如最小值为5,最大值为10,那么下标0的位置存储的是 5,最大值10存储的下标为 10 -5 =5,数组的长度为 6(统计的下标范围为0~5)。

  1. package com.sort.s08countingsort;
  2. import org.junit.Test;
  3. import java.util.Arrays;
  4. public class CountingSortB {
  5. /**
  6. * (1)找到最大值。
  7. * (2)遍历原数组,将值对应统计数组下标位置的值+1。
  8. * (3)遍历统计数组,输出到原数组或者新的数组。
  9. */
  10. public int[] sort(int[] sourceArray){
  11. // 对数组进行拷贝,不改变参数内容
  12. int[] arrToSort = Arrays.copyOf(sourceArray, sourceArray.length);
  13. // (1)找到最大值和最小值
  14. CountingRange countingRange = findMaxValue(arrToSort);
  15. // 排序
  16. return countingSort(countingRange,arrToSort);
  17. }
  18. private CountingRange findMaxValue(int[] arr){
  19. int maxValue = arr[0];
  20. int smallValue = arr[0];
  21. for(int value : arr ){
  22. maxValue=maxValue<value?value:maxValue;
  23. smallValue = smallValue>value?value:smallValue;
  24. }
  25. CountingRange countingRange = new CountingRange();
  26. countingRange.setMax(maxValue);
  27. countingRange.setSmall(smallValue);
  28. return countingRange;
  29. }
  30. private int[] countingSort(CountingRange countingRange,int[] arr){
  31. int bucketLen = countingRange.getMax() - countingRange.getSmall() +1;
  32. int[] bucketArr = new int[bucketLen];
  33. //(2)遍历原数组,将值对应统计数组下标位置的值+1。
  34. for(int value:arr){
  35. bucketArr[value-countingRange.getSmall()]++;
  36. }
  37. //(3)遍历统计数组,输出到原数组或者新的数组。
  38. int sortIndex = 0;
  39. for(int bc = 0;bc<bucketLen;bc++){
  40. int count = bucketArr[bc];
  41. while(count >0){
  42. arr[sortIndex] = bc+countingRange.getSmall();
  43. count --;
  44. sortIndex++;
  45. }
  46. }
  47. return arr;
  48. }
  49. @Test
  50. public void testSort(){
  51. int[] nums = {5, 3, 4, 6, 7, 1, 2, 8, 4, 10, 100, 50, 30, 22, 34, 55, 43, 12, 31};
  52. CountingSortB countingSortB = new CountingSortB();
  53. countingSortB.println(countingSortB.sort(nums));
  54. }
  55. // 用于输出数组
  56. public void println(int [] a) {
  57. for(int x:a) {
  58. System.out.print(" "+x);
  59. }
  60. System.out.println("");
  61. }
  62. class CountingRange{
  63. private int max;
  64. private int small;
  65. public int getMax() {
  66. return max;
  67. }
  68. public void setMax(int max) {
  69. this.max = max;
  70. }
  71. public int getSmall() {
  72. return small;
  73. }
  74. public void setSmall(int small) {
  75. this.small = small;
  76. }
  77. }
  78. }