I never know sorting algorithms can sound this melodious
@maurolionelmisjuegosyo940 Жыл бұрын
fr base 1024 is melodic
@SirPickles7772 жыл бұрын
1:38 that's beautiful
@nebulamachine2 жыл бұрын
It's just straight up music
@cyanisnicelol2 жыл бұрын
Music from sorts
@maurolionelmisjuegosyo94010 ай бұрын
Reminds me of an intro song for a cartoon
@ME0WMERE2 жыл бұрын
Base 16384 is just Step 1: scan the array twice Step 2: lag Step 3: done
@Sasparilla_2 жыл бұрын
well, there were only 16384 numbers to sort
@Tasarran2 жыл бұрын
Doing a RADIX sort to the same base as there are elements just becomes a counting sort, which works just like that.
@ChiNguyen-tw7sj Жыл бұрын
1 2:54 2:55
@ChiNguyen-tw7sj Жыл бұрын
OK 👌👍👍👍👍👍👍👍👌👍👌👍👌👍8
@timebmber2 жыл бұрын
2:07 sorting.exe phase 1 2:38 sorting.exe phase 2
@lamedavid6145 Жыл бұрын
I never thought a sorting algorithm could be so unsettling
@serg_sel7526 Жыл бұрын
3:34 sorting.exe has stopped working.
@TheOne_6 Жыл бұрын
base 512: how to do 1. scan list twice 2. cool music 3. scan list once 4. magic
@kennymishatylergamingeeee518310 ай бұрын
Base 128: 1. Scan the shuffled sort twice 2. Eerie music 3. Scan the shuffled sort again 4. Sort Base 256: 1. Scan the shuffles sort twice 2. Old glitchy retro music 3. Scan it again 4. Sort Base 512 1. Scan the shuffled sort twice 2. Add some cool retro music 3. Scan it again 4. Laggy sort Base 1024 1. Scan it twice 2. Add some more cool retro music 3. Scan again 4. Laggy sort Base 2048 1. Scan twice 2. Some not so cool retro music 3. Scan the somewhat shuffled sort again 4. Very laggy sort Base 4096 1. Scan twice 2. Lag 3. Scan again 4. Lag Base 8192 1. Scan twice 2. Lag 3. Scan again 4. Lag Base 16384 1. Scan twice 2. Lag
@kencarp572 жыл бұрын
Base 512 sounds like the Carnival Organ in HELL! 😈
@Orin_incoming_907 Жыл бұрын
1:09
@gdplayer10352 жыл бұрын
1:09 where do i download the midi file
@PatrickEAS20122 жыл бұрын
1:38 amazing part
@ChiNguyen-tw7sj Жыл бұрын
1:41
@MatthewYT23112 жыл бұрын
0:12 looks like i hear the drums
@featherfractal2122 жыл бұрын
2:07 Sort.exe
@trilceliamartinezmotta45732 жыл бұрын
3:05 sorting.exe phase 3
@bergencounty_elevators2 жыл бұрын
Base 16384 be like: Step 1: scan with blue pointer Step 2: scan slower with red pointer Step 3: drop the delay down to 3744ms Step 4: lag Step 5: pierce everyone’s eardrums Step 6: profit
@weirdsciencetv49992 жыл бұрын
Did you add synth drums and a whistle? Interesting touch.
@TrueMarble642 жыл бұрын
maybe the software uses midi : \
@weirdsciencetv49992 жыл бұрын
@@TrueMarble64 I kinda like it. I love the sound of computation, just fascinated me even as a kid. I’m still wondering how they came up with the computer sound effects in the 6 million dollar man. They got recycled throughout film history. Maybe it was tapping into a serial console? Or the databus? Anyhow, I first got into it when I put a radio next to my commodore 64. Could totally hear different sounds and patters as the program ran, each part of the game had a pretty specific sound to it.
@OneDotLeader2 жыл бұрын
i thought i was the only one who heard the whistle bc nobody else seemed to be talking abt it :D
@kargaroc386 Жыл бұрын
yeah I'm pretty sure this is cheated.
@YPaCtL5 ай бұрын
I love it when the sorting algorithm sounds so angelic
@OneDotLeader2 жыл бұрын
i swear you snuck some cymbal sounds in there
@bergencounty_elevators2 жыл бұрын
Base 16384 (00:03:24) is trying to open a second chrome tab on a school computer
@fletchqc9900 Жыл бұрын
POV: My wii right after I catch a rare fish in city folk:
@bergencounty_elevators6 ай бұрын
00:00 Base 128 00:29 Base 256 00:58 Base 512 01:26 Base 1.024 01:55 Base 2.048 02:24 Base 4.096 02:53 Base 8.192 03:24 Base 16.384
@maurolionelmisjuegosyo940 Жыл бұрын
1:09 when you wanna make music but you’re unmotivated and you just put randomness:
@ErenAndrews4 ай бұрын
❤😊s
@Orin_incoming_907 Жыл бұрын
0:11 base 128😂
@aiaioioi2 жыл бұрын
damn that's some nice music
@somebodyoncetoldme1866 ай бұрын
I feel like there’s more to why base 512 outputs music and it isn’t just a coincidence. What’s the underlying meaning? What’s so special about 512 or radix?
@N0tHumqn2 жыл бұрын
0:51 we once try again to turn on the stove
@Swordshreader Жыл бұрын
2:49 is a very interesting sound. I think I'ma use it in a song.
@heyitzrare2 жыл бұрын
so if the base = the item count, it's just a loud/slow Counting Sort
@Tasarran2 жыл бұрын
Exactly. Radix is basically a parallelization of the counting sort.
@heyitzrare2 жыл бұрын
@@Tasarran Beautiful!
@Tasarran2 жыл бұрын
@@heyitzrare The thing I really love about it is that it never does a single compare or swap. Beautiful, indeed!
@Orin_incoming_907 Жыл бұрын
3:05 base 8,192 *sorting.exe stopped working*
@Jkauppa2 жыл бұрын
hash sort directly to bins, just (max-min)/bins to get the bin width, (x-min)/binwidth to get the bin number, uniform distribution of data assumed, use other hash functions for other distributions, you can do multiple scans per recursion, like the max,min before the data number binning, other O(n) compatible scans possible
@Jkauppa2 жыл бұрын
it will not be different for different scale of numbers, supports int and fp numbers, just two passes per run, very aggressive divide and conquer, easily simply multi-threadable
@CaptainATG Жыл бұрын
1:38 - A bootleg version of the category reveal from Jeopardy!
@trilceliamartinezmotta45732 жыл бұрын
In 3:35 hace an error sorting
@NewFall7 ай бұрын
1:08 damn
@supersawclub_4096 Жыл бұрын
Funk time 1:09
@yes-lfs2 жыл бұрын
very funky sorting going on
@Orin_incoming_907 Жыл бұрын
2:38 base 4,096 *lag*
@Aa49Aa494aA7 ай бұрын
How to base 16384: Step 1: Inspect the list with a stick (2 times) Step 2: *Wii crash noise* Step 3: Run pigeonhole sort
@mariasuazo332011 ай бұрын
Base 512: 1. Slow fast music 2. Quiet tap music 3. Gets to radix pass
Isn't base 16384 technically just a counting sort?
@ChiNguyen-tw7sj Жыл бұрын
3:19 3:19 3:19 3:20
@untecito7 ай бұрын
the last one is very funny
@AustinTimmins-c8z Жыл бұрын
3:24 Base 16384
@ErenAndrews5 ай бұрын
0:44 0:46
@Orin_incoming_907 Жыл бұрын
Base 512 *not to lag done d!*
@Orin_incoming_907 Жыл бұрын
*watching on base 512*
@daffa_fm45832 жыл бұрын
do other scrambles
@GabrielsEpicLifeofGoals2 жыл бұрын
I want jazz!
@Orin_incoming_907 Жыл бұрын
0:12
@tadeufornazari27334 ай бұрын
16,384 bugou seu pc
@yeetdabeans38832 жыл бұрын
bases after 2048 be like: S0Rt1N9.EXE
@timebmber2 жыл бұрын
relatable
@trilceliamartinezmotta45732 жыл бұрын
0:41 load 2Tb be like
@trilceliamartinezmotta45732 жыл бұрын
0:12 base 16 in 2048 numbers Sort
@ArthurMapper2 жыл бұрын
1:09 b o o t i f u l
@ArthurMapper2 жыл бұрын
1:38 a m o z e n g
@not_estains Жыл бұрын
Base 16384: Scan twice *eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee* done
@stellarx20 Жыл бұрын
Gotta love counting sort in these sorting algorithm representations: - scan - BWEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEP - sorted