this post was submitted on 06 Feb 2025
406 points (97.4% liked)

Science Memes

12066 readers
1238 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.

This is a science community. We use the Dawkins definition of meme.



Research Committee

Other Mander Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS
 
top 17 comments
sorted by: hot top controversial new old
[–] Eheran@lemmy.world 41 points 5 days ago (4 children)

How does the last step sort an of the sizes? Why even have all the other steps if that one can do it all?

[–] SmoothLiquidation@lemmy.world 31 points 5 days ago (1 children)

When you merge two sorted lists, you only have to compare the first element of each, since you can trust that all of the other elements are bigger. All the steps before that are there to make sure that is true.

[–] IrateAnteater@sh.itjust.works 14 points 5 days ago (2 children)

Wait, how do I know that all four of the right half aren't smaller than all four of the Left half?

[–] bstix@feddit.dk 27 points 5 days ago

You don't, and they can be.

Watch the animation on Wikipedia: https://en.wikipedia.org/wiki/Merge_sort

[–] SmoothLiquidation@lemmy.world 11 points 5 days ago

It doesn’t matter. You check the first of each group and pick the smallest, then compare the one you didn’t pick with the next one of the other group. In your example, you would pick all of the ones from the right side and once it is empty, just add all the ones on the left.

[–] Ravi@feddit.org 14 points 5 days ago (1 children)

The one and only way to learn sorting algorithms: https://youtu.be/dENca26N6V4

[–] bitjunkie@lemmy.world 2 points 4 days ago

I'd watch this if I didn't know about programming just for the sheer weirdness

[–] Iron_Lynx@lemmy.world 7 points 4 days ago (1 children)

If you want to zipper two sorted lists, you compare the first element of each list, pick that first, take the next element of that list, rinse & repeat until one list runs out and then just chuck the entire rest of the other list in the remaining space, even if that's just one element. Since your two initial lists are already sorted, you can trust the combined list to also be sorted.

[–] Eheran@lemmy.world 2 points 4 days ago (1 children)

So the point is that always only exactly 2 elements are compared and so you first have to split everything into groups of 2. Seems very inefficient for larger datasets, since you need to handle every single item over and over again and compare so so often. But not a sorting and comparison expert, so no idea if human sorting logic applies at all.

[–] Iron_Lynx@lemmy.world 4 points 4 days ago* (last edited 4 days ago) (1 children)

Tbf, Merge Sort has a Big O of n log (n) in all cases, so it's a pretty mid sorting algorithm in general, but it's conceptually straightforward and easy to explain to newbies.

[–] fushuan@lemm.ee 2 points 3 days ago

There's no better big O sorting method for generic lists. Heap sort has better averages but the big O is the same in the end.

[–] cholesterol@lemmy.world 5 points 4 days ago (1 children)

Step 4 seems to do nothing?

[–] Fiery@lemmy.dbzer0.com 16 points 4 days ago (2 children)

Step 4 splits the pair above into single elements, from step 5 on the groups are getting merged.

[–] Lemmine@feddit.org 13 points 4 days ago (1 children)
[–] cholesterol@lemmy.world 3 points 4 days ago

Oh right, okay.