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,233,286 Responses

  1. firm表示:

    20 Up-And-Comers To Watch In The 18 Wheeler Accident Lawyers Industry firm

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

  3. learn more表示:

    Link exchange is nothing else except it is just placing the other person’s weblog link on your page at proper
    place and other person will also do similar in favor of you.

  4. Bravo case表示:

    15 Great Documentaries About CS GO Weapon Case Bravo case

  5. RandallTaulp表示:

    buy cipro online canada: ciprofloxacin mail online – buy cipro

  6. 10 Top Facebook Pages Of All Time Large Washing Machines 12kg Best 12kg washing machines

  7. 125.141.133.9表示:

    10 Sites To Help To Become A Proficient In Walking Pad And Standing Desk walking Treadmill with desk
    (125.141.133.9)

  8. Davidtes表示:

    lisinopril 20 lisinopril medicine lisinopril 4 mg

  9. Replacement Car Keys Near Me Tools To Make Your Daily Lifethe
    One Replacement Car Keys Near Me Trick That Every Person Should Know replacement car keys near me

  10. This Is The Ugly Facts About Double Glazed Windows Near Me double Glazed Windows near Me

  11. MarcoFer表示:

    МВД оценило ущерб от финансовой пирамиды Life is Good
    жесткое порно видео
    Жертвы финансовой пирамиды Life is Good понесли ущерб в сумме на 15 млрд рублей, оценило МВД. Пострадали больше 18 000 человек. Ущерб от другой рухнувшей пирамиды Finiko оценивался примерно втрое меньше. В отношении основателя Life is Good завели 13 уголовных дел
    Организаторы финансовой пирамиды Life is Good в регионах России причинили пострадавшим вкладчикам ущерб в сумме на 15 млрд рублей, сообщила официальный представитель МВД Ирина Волк. По информации МВД, жертвами пирамиды стали больше 18 000 человек.

    Из похищенных денег 158,5 млн рублей лидер пирамиды легализовал путем покупки недвижимости в Санкт-Петербурге и Ленинградской области, отметила Волк. В отношении организатора пирамиды возбуждено 13 уголовных дел по признакам отмывания денег, полученных преступным путем (часть 4 статьи 174.1 Уголовного кодекса, до семи лет лишения свободы). Организатора подозревают в организации преступного сообщества, деятельности финансовой пирамиды и мошенничестве.
    Пирамида работала с 2014 года в нескольких регионах России, организаторы создали сеть филиалов под единым брендом. Участникам обещали новое жилье либо доход в размере до 25% годовых. Инвестированием вкладов организаторы схемы не занимались: покупка недвижимости и обещанные выплаты осуществляли за счет привлечения денег новых клиентов, отметила Волк. Работу финансовой пирамиды МВД пресекло в марте 2022 года. Четверо подозреваемых арестованы, еще пятеро, включая 53-летнего организатора сообщества, объявлены в розыск. На тот момент министерство оценивало число пострадавших в 12 000 людей, сумму ущерба — не менее чем в 9 млрд рублей.
    Ирина Волк не назвала имя организатора Life is Good. В апреле 2022 года министерство объявило в розыск «по статье УК» Романа Василенко — он и есть основатель Life is Good, писало «РИА Новости». На странице Романа Василенко в LinkedIn (соцсеть заблокирована в России) говорится, что он с 2004 года занимает должность президента Life is Good Ltd. Он выпускник Ярославского высшего военного финансового училища и автор книги «Мечта, цель, успех предпринимателя».

    Ущерб от другой крупной финансовой пирамиды Finiko МВД оценивало в 5 млрд рублей, число потерпевших — примерно 10 000. В декабре 2022 года источники казанского издания «Бизнес Online» сообщили, что сумма ущерба сократилась в 30 раз до лишь 179,6 млн рублей, а число пострадавших — до 160.

  12. See What Cost To Replace Windows Uk Tricks The Celebs Are Utilizing cost to replace windows uk

  13. Lupita表示:

    The 3 Greatest Moments In Washers And Dryers Combo History washers and dryers combo (Lupita)

  14. Davidtes表示:

    cost of cheap propecia now order propecia without a prescription cost of cheap propecia now

  15. lock表示:

    Why You Should Concentrate On Improving Secondary Double Glazing
    Near Me lock

  16. The Unspoken Secrets Of Double Glaze Repair Near Me Double Glaze Repair

  17. WilliamRhype表示:

    http://finasteride.store/# propecia sale

  18. Where Is CSGO New Case One Year From In The Near Future?
    operation bravo case

  19. 15 Of The Most Popular Window.Replacement Near Me Bloggers You Must Follow Window Replacements

  20. Window表示:

    Window Companies Leeds Tools To Improve Your Daily Lifethe One Window Companies Leeds Trick That Everyone Should Know Window

  21. Why You’ll Want To Learn More About Lightest Folding Mobility Scooter folding mobility scooter for 20 stone person (https://Short-welch-2.federatedjournals.com)

  22. porn表示:

    Wonderfuⅼ goods from you, man. I’ve be awaгe your stuff ρrevious to and you’re just extrеmely great.
    I actuallү llike what you’ve bouցht right here, certainly like whаt yoou arгe sɑʏing andd
    the way in which during which you assert it. You’гe making
    it enjoyable and you continue to care for to stay it smart.
    I can’t wɑit to reɑd much more from you. That is actually a great web
    site. https://tempototoofficial.com/

  23. I absolutely love your site.. Great colors & theme.
    Did you build this site yourself? Please reply back as I’m wanting
    to create my very own website and would love to learn where you got this from or exactly what the
    theme is named. Thanks!

  24. WilliamRhype表示:

    https://cytotec.club/# Cytotec 200mcg price

  25. I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get got an edginess over that you wish be delivering the following.
    unwell unquestionably come further formerly again as exactly the same nearly
    very often inside case you shield this increase.

  26. The Biggest Problem With Best CSGO Opening Site, And How To Fix It counter-strike
    cases, https://minecraftathome.com,

  27. What Is Bunk Bed For Kids’ History? History Of Bunk Bed For Kids kids Furniture

  28. Seals表示:

    Why You Should Focus On Improving Double Glazed Windows Repair
    Seals

  29. Binance – achat vente cryptos

發佈留言

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