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...

907,957 Responses

  1. ask.fm表示:

    I have been exploring for a little for any high quality articles or blog posts in this sort of space .

    Exploring in Yahoo I eventually stumbled upon this web site.
    Reading this information So i’m glad to convey that I’ve an incredibly just right uncanny feeling I came upon just
    what I needed. I such a lot certainly will make sure to do not forget this
    site and give it a look regularly.

  2. That is really attention-grabbing, You’re an excessively
    skilled blogger. I have joined your feed and stay
    up for in search of extra of your wonderful post. Also, I’ve shared your
    site in my social networks

  3. I always spent my half an hour to read this webpage’s content
    all the time along with a cup of coffee.

  4. ski urlaub表示:

    Wenn du hier zu Lande eine TUI-Reise mit Abreise bis 30.04.2021 buchst, erhältst du automatisch und kostenlos
    den Reiseschutz “Covid Protect” zu deiner Buchung dazu.
    Deswegen rate ich dir dazu, die aktuellen Nachrichten zu verfolgen und dich bei deinem Außenministerium über schlau ausführbar.

    Der Coronavirus hat die ganze Tourismusbranche auf den Kopf gestellt
    – neue Konzepte und Sicherheitsmaßnahmen mussten entwickelt werden um Reisen soweit möglich weiterhin zu ermöglichen. Prima!
    Was ich dir jetzt noch ans Herz lege: eine Reiseversicherung mit
    Coronaschutz. Buchst du deine Reisen stets online? Für andere Reiseveranstalter
    kannst du eine Reiseversicherung inklusive Corona Reiseschutz oder eine Reisestornoversicherung der Allianz Travel
    zubuchen – online im letzten Buchungsschritt oder in unseren Reisebüros.

    Auszufüllende Dokumente, Quarantänebestimmungen und Rückreise Bedingungen können verwirrend sein.Um dir durch diesen Informationsdschungel zu
    helfen, haben wir dir eine Übersicht der geltenden Reisebestimmungen der beliebtesten Urlaubsländer zusammengestellt, welche wir regelmäßig aktualisieren. Auch 2021
    können sich Einreisebestimmungen laufend ändern. Die genauen Preise sind
    dabei abhängig von deiner Reise. Klar, Onlinebuchungen sind bequem von zuhause aus zu erledigen,
    doch der Kundenservice in Restplatzbörse Reisebüro Filialen ist unschlagbar.
    Erfahre hier mehr über die Vorteile, Unterschiede und Preise
    der Reiseversicherungen.

  5. qingye.world表示:

    Hey there! I’ve been reading your web site for some time now and finally got the bravery to go ahead and give you a shout out from Dallas Tx!
    Just wanted to tell you keep up the excellent work!

  6. Superb post but I was wondering if you could write a litte more on this topic?
    I’d be very grateful if you could elaborate a little bit more.
    Cheers!

  7. Hello to every one, the contents existing at this website
    are truly remarkable for people knowledge, well, keep
    up the nice work fellows.

  8. Every weekend i used to visit this website, for the reason that i want enjoyment, as this this site conations actually fastidious funny information too.

  9. Nice blog here! Also your website loads up very fast! What web host are you using?
    Can I get your affiliate link to your host? I wish my web site loaded up as fast as yours lol

  10. Good post! We are linking to this particularly great post on our site.
    Keep up the great writing.

  11. Admiring the persistence you put into your site and in depth information you provide.
    It’s good to come across a blog every once in a while that isn’t the same old
    rehashed information. Wonderful read! I’ve
    saved your site and I’m adding your RSS feeds to my Google account.

  12. Hello just wanted to give you a quick heads up.
    The text in your post seem to be running off the screen in Safari.
    I’m not sure if this is a format issue or something to do
    with internet browser compatibility but I thought I’d post to let you know.
    The design look great though! Hope you get the problem solved soon. Kudos

  13. myspace.com表示:

    It is the best time to make some plans for the future
    and it is time to be happy. I have read this post and if I could I want to suggest
    you few interesting things or suggestions. Perhaps you can write next articles referring to
    this article. I want to read even more things about it!

  14. I go to see day-to-day some websites and blogs to read articles,
    however this website presents quality based posts.

  15. I think the admin of this web site is really working hard in favor of his web site, because here every material is quality
    based material.

  16. I visited many web pages except the audio feature for audio songs existing at
    this web site is really wonderful.

  17. dribbble.com表示:

    Thanks to my father who informed me concerning this blog, this blog is genuinely
    remarkable.

  18. Heya just wanted to give you a quick heads up and let you know a few of the pictures aren’t
    loading properly. I’m not sure why but I think its
    a linking issue. I’ve tried it in two different internet
    browsers and both show the same results.

  19. I love your blog.. very nice colors & theme. Did you make this website yourself or did you hire someone to do it for you?

    Plz answer back as I’m looking to design my own blog and would like to know where u got this from.
    thanks a lot

  20. ski urlaub表示:

    Ein Ende des Verbots ist derzeit nicht absehbar.
    Noch ist unklar, wann an Ferienorten wie Hurghada und Scharm el Scheich wieder Normalität
    einkehrt. Ein Entschluss dazu soll noch diese Woche fallen.
    Für Urlauber aus dem Ausland sind die Grenzen weiterhin dicht.

    Seit Mitte März gilt ein Einreiseverbot für Ausländer aus Europa in die USA.

    Geplant ist zudem, dass Touristen eine Tracing-App herunterladen und gebrauchen müssen, der Infektionsketten besser verfolgt werden können. Die Türkei hofft ab Mitte Juni wieder auf Touristen und bereitet Flughäfen, Strände und
    Hotels entsprechend vor. Die Regierung in Ankara erwartet zwar,
    dass die Bundesregierung ihre weltweite Reisewarnung noch vor
    den Sommerferien auch für die Türkei aufhebt, aber ein solcher Schritt ist bis jetzt nicht angekündigt.
    Über dieses Thema berichtete die tagesschau
    am 26. Mai 2020 um 20:00 Uhr. Hotels dürfen für einheimische Urlauber bei 25 Prozent Belegung
    inzwischen aber wieder öffnen und ab 1. Juni bei jeder zweite Belegung.

  21. Truly no matter if someone doesn’t understand
    then its up to other users that they will help, so here it occurs.

  22. thermo rollen表示:

    Sind solche Belege inexistent oder gehen sie verloren, kann als Ersatz ein Eigenbeleg erstellt werden. Zumeist werden Eigenbelege vom Unternehmer selbst oder von leitenden Angestellten ausgestellt,
    die hierzu bevollmächtigt sind. Eigenbelege dienen vorm Finanzamt als Ersatz für Rechnungen oder Quittungen. Hierbei gilt jedoch
    grundsätzlich jeden Beleg aufzubewahren und zeitnah einen Eigenbeleg zu
    erstellen. Sie dokumentieren tatsächlich stattgefundene Geschäftsvorgänge und machen diese
    bei Prüfungen durch die Finanzbehörden, Wirtschaftsprüfer
    oder die Rechnungsprüfung als Einnahme oder Ausgabe kenntlich.
    Was tun, wenn Belege fehlen? Das Fehlen von Originalbelegen kann verschiedene Ursachen haben. Der Zahlungsempfänger kann vergessen haben,
    einen Beleg auszustellen, oder hat für den Empfang von Trinkgeld
    keine Quittung ausgestellt. Ist keine dritte Person oder kein drittes Unternehmen an der Transaktion beteiligt, wird nicht immer ein Beleg
    ausgestellt; derbei muss ein Eigenbeleg angefertigt werden, um den Geschäftsvorgang zu dokumentieren. Für außerplanmäßige Abschreibungen wie Verderb, Lagerabbau oder
    Diebstahl ist die Erstellung eines Eigenbelegs notwendig.
    Originalbelege können spurlos verschwunden oder vernichtet worden sein. Schließlich hinterlässt kein Dieb eine Quittung.

    Für die Abrechnung von Reisekosten oder Verpflegungsmehraufwendungen (sprich:
    Spesen) für einen Unternehmer oder Angestellten liegt nicht immer ein Beleg vor.

  23. Appreciate this post. Let me try it out.

  24. What’s up, I check your blog on a regular basis. Your humoristic style is witty, keep doing what you’re
    doing!

  25. Whats up are using WordPress for your blog platform? I’m new
    to the blog world but I’m trying to get started and set up my
    own. Do you require any html coding expertise to make your
    own blog? Any help would be greatly appreciated!

  26. discuss表示:

    Hi, Neat post. There’s a problem along with your website in web explorer, could
    test this? IE nonetheless is the market leader and a
    large component to folks will omit your great writing because of this problem.

  27. If some one needs expert view about blogging and site-building afterward
    i suggest him/her to pay a visit this webpage, Keep up the
    fastidious job.

  28. black表示:

    Quality content is the key to be a focus for the users to visit the web page,
    that’s what this web page is providing.

  29. Hi there, i read your blog from time to time and i own a similar one and i was just curious if you get a lot of
    spam feedback? If so how do you reduce it, any plugin or anything you can suggest?
    I get so much lately it’s driving me insane so any support
    is very much appreciated.

  30. Wow, fantastic blog layout! How long have you been blogging
    for? you made blogging look easy. The overall look of
    your website is excellent, as well as the content!

發佈留言

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