计数排序-非比较排序

Posted huan30

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计数排序-非比较排序相关的知识,希望对你有一定的参考价值。

  适用场景:量大但是范围小

package com.example.sort.count;

import java.util.Arrays;

public class CountSort {
    public static void main(String[] args) {
        int[] arr = {2, 4, 2, 3, 7, 1, 1, 0, 0, 5, 6, 9, 8, 5, 7, 4, 0, 9};// 0-9之间的数字
        int[] result = sort(arr);
        System.out.println(Arrays.toString(result));
    }

    /**
     * 计数排序
     *
     * @param arr
     */
    private static int[] sort(int[] arr) {
        //创建临时存储数组
        int[] result = new int[arr.length];
        // 建立0-9容器
        int[] count = new int[10];
        // 如果出现容器对应下标的数出现就给位置的对应值 +1
        for (int i = 0; i < arr.length; i++) {
            count[arr[i]]++;
        }
        // 开始清空容器值,置入临时返回数组中
        for (int i = 0, j = 0; i < count.length; i++) {
            while (count[i]-- > 0) {
                result[j++] = i;
            }
        }
        return result;
    }

    private static void swap(int[] arr, int i, int j) {
        int temp = arr[i];
        arr[i] = arr[j];
        arr[j] = temp;
    }

    private static void print(int[] arr) {

        for (int i : arr) {
            System.out.print(i + " ");
        }
    }
}

  

以上是关于计数排序-非比较排序的主要内容,如果未能解决你的问题,请参考以下文章

非比较排序之计数排序

排序算法非比较排序:计数排序基数排序桶排序

数据结构非比较排序的算法实现(包括计数排序计数排序)

计数排序-非比较排序

计数排序-非比较排序

数据结构非比较排序算法(实现计数排序和基数排序)