Merge Sort

preview_player
Показать описание
Visualization and "audibilization" of the Merge Sort algorithm.
Sorts a random shuffle of the integers [1,100] using merge sort. The left and right boundary of each range is marked with green, the middle with blue. This merge sort does not work in-place, when merging sorted ranges it writes to a shadow array, which is copied back after the merge. Only comparisons are used to generate sound, thus the copy is silent.
Рекомендации по теме
Комментарии
Автор

This is the quality music you will not get from anywhere else.

chulimyoo
Автор

damn 100 gecs went hard on this one ngl

epicmonkey
Автор

Merge Sort Example :
Array: [1 3 2 5 4 7 8 6]
1. Split in half
1325 4786

2. Split again
13 25 47 86

3. Sort the elements
13 25 47 68

4. Merge to half’s
1325 4768

5. Sort left
1235

6. Sort right
4768

7. Finally, insert in order
12345678

fantaman
Автор

Beautiful, love your visualization for sorting algorithms! Thank you

shatandv
Автор

Thank you. I've been looking for a good video to help me understand merge sort better. This is the best one I've found so far.

danielatkinson
Автор

Beautiful O(n * log n) Sorting algorithm

yorchais
Автор

Merge sort: Sort two different parts. After done, merge.

want-diversecontent
Автор

why are these videos so safisfying god

luissilva
Автор

The first 2 seconds sounded like a song from an 8-bit game.

ocks
Автор

Tfw portal reference in comments but comment to old to reply to

bibbly
Автор

I think if parallel processing is used the animation would have been different...this is serial processing of recursion...can anyone confirm if I'm right or wrong??

debjyotipalit
Автор

Absolute masterpiece for my classroom at work on this. 😀 thanks

Tecnocrazia
Автор

Nobody talkin about the nice chords in 0:00 to 0:04?

romeolz
Автор

Ive been obsessed with watching these even tho idk what's going on

daledevine
Автор

will add this piano masterpiece is in my playlist

droid-aman
Автор

Is that the soundtrack of the first Legend of Zelda?

tjerks.
Автор

At 1:02 why are some elements duplicated while others are missing?
Love these vids but i have been trying to figure this out

skandragon
Автор

Am I high or does 0:11 sound like the first few notes from still alive from portal?

OrigiName
Автор

How do you make this ? video software editor or complete code with programming language .

Max-rydv
Автор

Great algorythm! Gotta be at least top 5!!

leonardopische