Skip to content

有个很大的缺陷就是,如果数组中的元素很大,那么数组的长度就会很大,导致空间复杂度很高

这个计数的数量级

js
const main = () => {
    const arr = [3, 2, 1, 4, 5, 6, 7, 8, 9, 10];
    const result = countingSort(arr);
    console.log(result);
}

const countingSort = (arr) => {

    let cnt = [];
    let b = [];
    arr.map((item)=>{
        cnt[item] = cnt[item] || 0;
        cnt[item]++;
    })

    let tot = 0;
    for(let i=0;i<10000;i++){ // 10^5
        for(let j=0;j<cnt[i];j++){
            b[++tot] = i;
        }
    }
    console.log(b);
    return b;
}

main();
本站访客数 人次 本站总访问量