BTMC REACTS TO SORTING ALGORITHMS

  Рет қаралды 37,692

BTMC Highlights

BTMC Highlights

Жыл бұрын

Watch live at / btmc
BTMC " BeasttrollMC " Ling LIVE REACTION😔
Videos Watched:
• sorting algorithms to ...
• *SEIZURE WARNING* Push...
• 15 Sorting Algorithms ...
▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂
【Other places】
➤Main Channel: / btmclive
➤Clips Channel: / btmchighlights
➤Join my Discord : / discord
➤Follow me on Twitter : / btmclive
▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂
Edited by: Chompy
/ mrchompysaur

Пікірлер: 55
@kaiwut
@kaiwut Жыл бұрын
peak btmc reaction content
@sihamhamda47
@sihamhamda47 Жыл бұрын
10:26 I'm not even surprised if someone decided to map this in osu
@waidi3242
@waidi3242 Жыл бұрын
it's too slow, it wouldn't worth it
@RO_Tim
@RO_Tim Жыл бұрын
@@waidi3242 waltz of the irish type beat
@_wetmath_
@_wetmath_ Жыл бұрын
Ekoro would fc it on his first try
@waidi3242
@waidi3242 Жыл бұрын
@@RO_Tim yeah but there was some fast af mappable sounds, this would be just 4* unsynced jumps
@sfisher923
@sfisher923 Жыл бұрын
Considering someone did chart these Sorting Algorithms on Clone Hero so I wouldn't be surprised if some did it on mania or normal osu!
@bite12344
@bite12344 Жыл бұрын
Bogo sort is literally the RNG of sorts, you either hit the best first randomisation which is the sorted list or you randomise till you hit the upper limit, I guess the average is worse than the others, but hey it could theoretically be the best, all hail RNG.
@ryanzdral8895
@ryanzdral8895 Жыл бұрын
Bogo bogo sort is even better, as it uses recursion. It goes way slower on average and is even detrimented by its use of recursion, but it uses recursion. So it’s just cooler, that’s just science
@anto_fire8534
@anto_fire8534 Жыл бұрын
Quantum bogosort is the best of all algorithms, better than those 2 u mentionned.
@polymations
@polymations 4 ай бұрын
or it never manages to find the actually sorted one, which is O(infinity).
@_Kori
@_Kori Жыл бұрын
bogo sort sucks but damn does it drop some sick beats 🔥🔥🔥
@fuyuv_
@fuyuv_ Жыл бұрын
just gotta be lucky
@quack3891
@quack3891 Жыл бұрын
Sorts in the video (but written by me, so they're pretty dumb but easy to understand the premise) First, let's explain why and what O(n) is. O(n) sorts are basically non-comparison sorts, It's not that they don't "compare" but that they don't look at two elements really and then just say, "well one is bigger than the other". The reason why O(n) sorts work is because you are comparing them very very broadly. It's kinda like having a bunch of numbers from 0 to 9999. If you make a bucket of 0 to 999. Then it's still a large list, but at least you know its 0 to 999. Then to 0 to 99, then to 0 to 9. The reason this works is because now you're sorting a list thats only 10 elements long, so now the algorithm doesn't need to worry "oh jeez, the number in the 420th place is greater than it" or "the number in the 74th place is less than it? Too Bad!" instead it only needs to worry about it's slice of pie. You're still solving the same numbers (O(n)) but instead of checking if one slices is bigger than the other (log(n)) you instead just say, "fuck it, it's probably large enough". Counting sort, O(n) figures it out like that because it ranks each element on that list by how cool they are, counts how many times they show up on a separate list with each place being how cool they are, and then using how cool they are as well as how many, then creates a new list using said coolness and number. Pigeonhole Sort, O(n) same as counting sort, but now you just group them by rank pre-maturely in that separate list and if there's any two elements that are as cool as each other, they get placed in the same place in that list (hence pigeonhole, two pigeons in a hole), list is then created by going by increasing coolness in that list. Gravity Bead Sort, O(n^2), O(2^n) if it's not a number be given your maximum size (aka, the biggest number), then write a graph for each number with the height being the largest number and the width being the number of items sorted. Write the graph like a bar graph, by filling in the spaces up to the height of that number at that position. Now for the other reason why it's so fucking bad, we will now constitute the rule "if it looks taller, move it over". Now do that for every element each time going left-to-right, then keep combing left-to-right over and over again till it looks sorted. You COULD optimize it, but then it will lose it's novelty and just become bubble sort. American Flag Sort, O(n) Make a bucket (a fuckload of them) then write what will fall into the bucket like "like the numbers from 0 to 9" for instance, then will comb left to right and determine if it falls in. Now in that bucket, we will do the same, eventually we will end up with a sorted list. Why is this called the American Flag Sort? it uses the Dutch National Flag Algorithm (thanks Djikstra) and some guy in the NIST (US) made it. xlinux.nist.gov/dads/HTML/americanFlagSort.html Radix Sort, both MSD and LSD, O(wn) make a bucket, now make it by the least significant digit, this means that 1 and 11 and 111 and 1111 and 11111 are in the same bucket. Now do this for 0 to 9 (Radix in this case is 10, as 0 to 9 is 10 numbers, 2 is binary, and 16 is hexadecimal). Now for the next run, deal with the second least significant digit. Everything from 0 to 9 is left in the left-most part, and everything to the right is definitively greater than or equal to 10. In-place just means that this 0 to 9 and 10 to 99 and so on shifting is done each time the partition is separated instead of in a separate list. (since you're just moving stuff around) Flash Sort, O(n) using buckets, recursively split and sort buckets with insertion sort with prefix sum inputs. Or basically, push them again into the buckets, but using prefix sum, we can shittily determine that "hey, this LOOKS like this should be where it goes", and then we put it in. This makes insertion sorts job a lot easier since it says "yea this looks sorted" and can quit at any time.
@hexlok2630
@hexlok2630 10 ай бұрын
holy shit dude you popped off with this
@quack3891
@quack3891 10 ай бұрын
@@hexlok2630 there's missing a few, but I was too lazy and/or I forgor
@39sankyuu
@39sankyuu Жыл бұрын
fun wikipedia definition of gnome sort: "Gnome sort (nicknamed stupid sort) is a variation of the insertion sort sorting algorithm that does not use nested loops. Gnome sort was originally proposed by Iranian computer scientist Hamid Sarbazi-Azad (professor of Computer Science and Engineering at Sharif University of Technology) in 2000. The sort was first called stupid sort (not to be confused with bogosort), and then later described by Dick Grune and named gnome sort."
@denizberkinmis
@denizberkinmis Жыл бұрын
bogo sort is the best when the list is already sorted I guess :p
@DeenBoi
@DeenBoi Жыл бұрын
Honestly kinda impressive
@DarkonFullPower
@DarkonFullPower Жыл бұрын
4:52 He played this at a faster speed. The sound "LSD sort" makes on 1x is magnitudes more haunting then what he heard.
@Lazuley_
@Lazuley_ Жыл бұрын
This II-l album is fire 🔥🔥🔥
@miwiki6
@miwiki6 Жыл бұрын
watching sorting algorithms with BTMC is amazing
@Yes.-_-
@Yes.-_- Жыл бұрын
At 3:15 it does this by counting how high each peak is, then it sort from high to low or low to high, it calculates this based off of its own review it did before (i think)
@chikenplayz4440
@chikenplayz4440 8 ай бұрын
A little late, but counting sort literally counts the numbers in the array. It goes through the array and counts the number of ones, twos, and so on. It then arranges the numbers in order so it starts with the ones, twos, and so on until the array is sorted.
@Arjun-hp2sp
@Arjun-hp2sp Жыл бұрын
NO NOT AGAIN I FOUND THIS LIKE A YEAR AGO AND REWATCHED THIS 5 TIMES
@LLL....
@LLL.... Жыл бұрын
Truly a BTMC reaction.
@outlyings
@outlyings Жыл бұрын
this is the content i subscribed for
@glixh_hunt3r
@glixh_hunt3r Жыл бұрын
Wait, why did I watch this
@kayparody
@kayparody Жыл бұрын
Ahh yes, Asteroid Field of DECAPLETS
@ItsRubyGD
@ItsRubyGD Жыл бұрын
bro played so much osu even his heartbeat keeps the exact same rhythm
@eqweqwqe5515
@eqweqwqe5515 Жыл бұрын
truly the btmc highlight of all time
@harukilol727
@harukilol727 Жыл бұрын
the roundtable is making him lose his sanity
@BOTNPC
@BOTNPC 10 ай бұрын
7:42 discord notification sort
@diplogg6782
@diplogg6782 Жыл бұрын
Why are they making him watch this
@m4sterred853
@m4sterred853 Жыл бұрын
BTMC software developer arc PauseChamp
@xethaz8088
@xethaz8088 Жыл бұрын
guitar hero guy
@thelastnoise9210
@thelastnoise9210 Жыл бұрын
KZbin: Obviously this game is OSU!
@SilicosisNotBeta
@SilicosisNotBeta Жыл бұрын
you guys ever feel like a bogosort rn
@felixgg
@felixgg Жыл бұрын
his best reaction video
@nozie677
@nozie677 Жыл бұрын
weekly hairstyle change
@benh4341
@benh4341 Жыл бұрын
BTMC wishing he did CS
@Jasdewisafarmer
@Jasdewisafarmer Жыл бұрын
I like his hair
@ClampyStew
@ClampyStew Жыл бұрын
wow
@OyasuriZzz
@OyasuriZzz Жыл бұрын
Beatmap ranked when?
@Yhizi
@Yhizi Жыл бұрын
the most ridiculous BTMC react ever
@Alawawagua954
@Alawawagua954 Жыл бұрын
I dont know why but I just watch it till the end and dont know what I am doing LOL
@ShiroCh_ID
@ShiroCh_ID 9 ай бұрын
just like how BTMC said in this streams, He even didnt know why
@Candelz
@Candelz Жыл бұрын
whose gonna map this one
@Stepped
@Stepped Жыл бұрын
unrelated but ed is gonna play omori?
@retr0foxx_osu
@retr0foxx_osu Жыл бұрын
where's the osu! map for this
@EasonTek
@EasonTek 8 ай бұрын
BRO WHY unexpected comp sci
@august44_
@august44_ Жыл бұрын
9:00 mcdonalds sort
@arturfytsyk4998
@arturfytsyk4998 11 ай бұрын
bpm?
BTMC TRIES TO GUESS YOUR RANK WITH "AMAZING" ACCURACY
33:55
BTMC Highlights
Рет қаралды 441 М.
AFTER 7 YEARS, HISTORY WAS MADE | BTMC Reacts
12:56
BTMC Highlights
Рет қаралды 127 М.
Sprinting with More and More Money
00:29
MrBeast
Рет қаралды 184 МЛН
Василиса наняла личного массажиста 😂 #shorts
00:22
Денис Кукояка
Рет қаралды 7 МЛН
Countries Treat the Heart of Palestine #countryballs
00:13
CountryZ
Рет қаралды 30 МЛН
Reacting to The Simplest Math Problem No One Can Solve
28:49
Lav Luka
Рет қаралды 17 М.
easiest 460pp play for beginners
1:34
veryasian
Рет қаралды 48 М.
When osu! players touch the Human Benchmark test...
10:21
honmi
Рет қаралды 629 М.
SPEEDRUNNING MY WAY INTO 4 DIGIT
21:55
BTMC
Рет қаралды 947 М.
BTMC REACTS TO YOUR CRACKED OSU! GAMING SETUPS
23:04
BTMC Highlights
Рет қаралды 152 М.
MREKK DANCING!! | Daily osu! Moments!
12:01
Pinnacle - osu!
Рет қаралды 54 М.
OVERTAKING COOKIEZI!?!
11:45
BTMC
Рет қаралды 278 М.
WORST HR PLAYER is NOT human.
12:48
Spazza17 Clips
Рет қаралды 51 М.
BTMC REACTS TO OSU!'S WEIRDEST BEATMAP
9:15
BTMC Highlights
Рет қаралды 136 М.
ҚОЙДЫ ТОНАУДЫҢ 5 ТӘСІЛІ
14:19
DENRON
Рет қаралды 20 М.
[RU] BLAST Premier Spring Final 2024 - Day 5
4:46:21
RLG PARI RU
Рет қаралды 363 М.