JS 依照元素出現數量排序

同樣是最近遇到的狀況,需要利用陣列內元素出現的數量進行排序,以下為範例程式:

var array = ["1", "2", "4", "5", "2", "4", "2", "3"];
var str = array.toString();
var filter = [];
var result = [];
document.write("原始陣列:" + array + "<br>");

var get = function (str, tar, arr, tmp) {
    if (str.indexOf(tar) >= 0) {
        tmp = str.slice(str.indexOf(tar) + 1);
        arr.push(tar);
        get(tmp, tar, arr, tmp);
    }
    return arr;
}

for (i in array) {
    var elm = [];
    var tmp;
    var fstr = filter.join();
    if (fstr.indexOf(array[i]) >= 0) {
        continue;
    } else {
        var tmp_arr = get(str, array[i], elm, tmp);
        result.push(tmp_arr.length + ':' + tmp_arr[0]);
        filter.push(array[i]);
    }
}

result.sort();
result.reverse();

//按照出現次數排序,不刪除重複元素
var finishArray = [];

for (index in result) {
    var show = result[index].split(':');
    for (i = 0; i < show[0]; i++) {
        finishArray.push(show[1]);
    }
}
document.write("按出現次數排序,不刪除重複元素:" + finishArray + "<br>");

//按照出現次數排序,刪除重複元素
var finishArray = [];
for (index in result) {
    var show = result[index].split(':');
    finishArray.push(show[1]);
}
document.write("按出現次數排序,刪除重複元素:" + finishArray + "<br>");

輸出結果:

原始陣列:1,2,4,5,2,4,2,3
按出現次數排序,不刪除重複元素:2,2,2,4,4,5,3,1
按出現次數排序,刪除重複元素:2,4,5,3,1

You may also like...

1,211,836 Responses

  1. DominicJaw表示:

    medication from mexico pharmacy: buying prescription drugs in mexico online – mexican rx online

  2. Why We Are In Love With Vintage Leather Couch (And You Should, Too!) Vintage Leather Sofa

  3. 台北 撥筋表示:

    https://bogin14.research.au-syd1.upcloudobjects.com/research/bogin14-(159).html
    Weddings may be very totally different right now, depending on the place you live.

  4. WayneCoirl表示:

    buying prescription drugs in mexico: mexican rx online – mexico drug stores pharmacies

  5. DominicJaw表示:

    mexican drugstore online: medicine in mexico pharmacies – mexican online pharmacies prescription drugs

  6. What’s The Job Market For Double Glazed Window Repairs Professionals?

    Double Glazed Window Repairs

  7. WayneCoirl表示:

    medicine in mexico pharmacies: mexican rx online – medication from mexico pharmacy

  8. WayneCoirl表示:

    mexican online pharmacies prescription drugs: reputable mexican pharmacies online – mexican border pharmacies shipping to usa

  9. Find Out What Boat Accident Lawsuit Tricks The Celebs Are Using boat Accident lawyers (http://www.youwantech.com)

  10. DominicJaw表示:

    mexican border pharmacies shipping to usa: mexican pharmaceuticals online – pharmacies in mexico that ship to usa

  11. WayneCoirl表示:

    medication from mexico pharmacy: mexico pharmacies prescription drugs – purple pharmacy mexico price list

  12. WayneCoirl表示:

    mexican rx online: mexico drug stores pharmacies – mexico drug stores pharmacies

  13. Everything You Need To Know About Electric Travel
    Wheelchair chairs electric

  14. WayneCoirl表示:

    buying prescription drugs in mexico online: mexico pharmacies prescription drugs – mexico drug stores pharmacies

  15. What Window Repairs London Experts Want You To Know upvc window repairs london

  16. DominicJaw表示:

    mexican rx online: mexico drug stores pharmacies – mexican mail order pharmacies

  17. 10 Quick Tips For Cost Of Replacement Car Key replacement car key costs

  18. 10 Tell-Tale Signs You Must See To Get A New Electric Treadmill Space saving
    electric treadmill (enfogentraining.com)

  19. Lazroju表示:

    Привет!
    Мы изготавливаем дипломы психологов, юристов, экономистов и других профессий по выгодным ценам.
    formfinance.ru/byistroe-oformlenie-diplomov-nadezhno-i-legalno

  20. bokep indo表示:

    Hi there! This is kind of off topic but I need
    some advice from an established blog. Is it tough to
    set up your own blog? I’m not very techincal but I can figure things out pretty quick.
    I’m thinking about setting up my own but I’m not sure where to begin. Do you have any ideas or suggestions?

    Thank you

  21. DominicJaw表示:

    buying prescription drugs in mexico: reputable mexican pharmacies online – medication from mexico pharmacy

  22. WayneCoirl表示:

    medication from mexico pharmacy: reputable mexican pharmacies online – mexican rx online

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。