Stooge Sort

  Рет қаралды 106,942

Timo Bingmann

Timo Bingmann

Күн бұрын

Visualization and "audibilization" of the Stooge Sort algorithm.
Sorts a random shuffle of the integers [1,64] using Stooge sort. It uses the implementation from en.wikipedia.or... .
More information on the "Sound of Sorting" at panthema.net/20...

Пікірлер: 217
@GLITCH_-.-
@GLITCH_-.- 8 жыл бұрын
Looks like the algorithm didn't really trust itself very much...
@live22morrow
@live22morrow 5 жыл бұрын
Consider that it performs around 18,000 comparisons after the array is already sorted.
@philiphunt-bull5817
@philiphunt-bull5817 4 жыл бұрын
_efficiency_
@ouch9841
@ouch9841 4 жыл бұрын
[ Alzheimer's ]
@californium-2526
@californium-2526 3 жыл бұрын
Efficiency -9%
@dnaroseandthewolves
@dnaroseandthewolves Жыл бұрын
recursion
@morgansaville8508
@morgansaville8508 5 жыл бұрын
"Hmmm I wonder if the data moved around while I wasn't looking... better go back and check!"
@zlodevil426
@zlodevil426 3 жыл бұрын
No. Stooge sort works like this: sort the first 2 thirds, then the last 2 thirds, then the first 2 thirds again. Each part is sorted using stooge sort too
@fuyumi4309
@fuyumi4309 2 жыл бұрын
@@zlodevil426 it was a joke
@zlodevil426
@zlodevil426 2 жыл бұрын
@@fuyumi4309 i knew that it probably was, I just wanted to explain how it really works
@txqea9817
@txqea9817 6 жыл бұрын
why have free time when you can spend ten hours watching a computer sort data in a terribly inefficient way
@firstnameiskowitz8493
@firstnameiskowitz8493 3 жыл бұрын
hey quiplash, wanna see me sort?
@clyde-or-monty
@clyde-or-monty Жыл бұрын
bogo sort:
@Roxor128
@Roxor128 7 жыл бұрын
This is what bored programmers come up with to pass the time: Comedy in code form.
@jakethewolfie119
@jakethewolfie119 4 жыл бұрын
Codedy.
@KingJellyfishII
@KingJellyfishII 5 жыл бұрын
Step 1: look at a few integers Step 2: look at them again just to check they haven't magically become something else. Step 3: repeat step 1 & 2 a few times. Step 4: sort them Step 5: move on to a different set of integers Or Step 1: look at some values Step 2: check they haven't changed Step 3: ??? Step 4: profit
@smaybius
@smaybius 2 жыл бұрын
Not sure if this is a joke, but stooge sort works by working on the first 2/3, then the last 2/3, then the first 2/3 again, and recursively breaks each of those 2/3 down into those three 2/3 until they're the smallest size. Udiprod has a much better explanation, and the only reason why that video is almost an hour long is because of bogo sort trying to finish the race
@rynabuns
@rynabuns 7 жыл бұрын
2:31 Uh? It's done! Hello…? Helloooooooooo
@honchokomodo
@honchokomodo 7 жыл бұрын
+Ryna Lau the algorithm is just really stupid
@andrasfogarasi5014
@andrasfogarasi5014 7 жыл бұрын
It's just making sure.
@rich1051414
@rich1051414 5 жыл бұрын
@@andrasfogarasi5014 And then it needs to make sure it is sure.
@ZeldaACFan17
@ZeldaACFan17 5 жыл бұрын
@@rich1051414 Then make double sure it's sure, and then triple, then quadruple...
@NoriMori1992
@NoriMori1992 4 жыл бұрын
@@andrasfogarasi5014 Sounds like my ADHD.
@Kabitu1
@Kabitu1 10 жыл бұрын
This really gives you an appreciation of what O(n^2) really means; in terms of a problem that can be solved in linearithmic time it means fucking around being useless all day long.
@leopoldslikk3121
@leopoldslikk3121 10 жыл бұрын
O(n^2) indicates complexity, not how smart an algorithm is.
@roguepackets2198
@roguepackets2198 10 жыл бұрын
I'm pretty sure you mean "T(n^2)".
@Kabitu1
@Kabitu1 10 жыл бұрын
Rogue Packets No, I meant the time complexity is O(n^2). Is that wrong?
@roguepackets2198
@roguepackets2198 10 жыл бұрын
Kabitu1 Ah. Sorry. Turns out T(blahblahblah) is worst-case time.
@trissylegs
@trissylegs 9 жыл бұрын
Kabitu1 Stooge sort is actually O(n^(log 3 / log 1.5)), about O(n^2.7095)
@Richardddoobies
@Richardddoobies 8 жыл бұрын
It seems to tickle groups of integers a few times before deciding to move them.
@prim16
@prim16 7 жыл бұрын
This shouldn't have given me a hard-on.
@user-mp8oo6de2i
@user-mp8oo6de2i 6 жыл бұрын
saw this comment on another sorting video HM
@want-diversecontent3887
@want-diversecontent3887 5 жыл бұрын
Rick Davidson "Sort 2/3, sort the second 2/3…did I sort the first 2/3 already?"
@TheF4talgamer
@TheF4talgamer 5 жыл бұрын
@@want-diversecontent3887 how can you sort a second 2/3 if you only have 1/3 left
@want-diversecontent3887
@want-diversecontent3887 5 жыл бұрын
Just a Random Name Alright, so let's say we have 3 items like this: 3 2 1 Sort the first 2/3 2 3 1 Sort the second 2/3 2 1 3 Sort the first 2/3 1 2 3
@dorukayhanwastaken
@dorukayhanwastaken 8 жыл бұрын
Is this algorithm made to show how not to use recursion?
@rich1051414
@rich1051414 5 жыл бұрын
Yes. It is called 'stooge sort' for a reason. It sums up what you shouldn't do. Mainly, redundant operations.
@pvic6959
@pvic6959 4 жыл бұрын
@@rich1051414 shoot ive been using this sort for my very time sensitive stuff!
@LieseFury
@LieseFury 2 жыл бұрын
@@pvic6959 try bogo sort instead
@pvic6959
@pvic6959 2 жыл бұрын
@@LieseFury oh yeah I switched to that a few months ago!
@Exarian
@Exarian 5 жыл бұрын
"congratulations, you've successfully given a computer anxiety."
@jacquelineamelie5467
@jacquelineamelie5467 6 жыл бұрын
*is sorted for 20 seconds before it decides its actually sorted*
@lpsp442
@lpsp442 4 жыл бұрын
Love the peculiar looping sound this overly-cautious algorithm produces
@hymnodyhands
@hymnodyhands Жыл бұрын
It reminds me of the song "Tumbling Tumbleweeds" ... one can hear the wind, and the tumbling ...
@michaelhubertz3016
@michaelhubertz3016 10 жыл бұрын
This is a _musical_ algorithm, useable for sorting purposes. Just needs some extra time before it stops. Reminds me of Beethoven's Schlussproblem...
@nuniezjorge
@nuniezjorge 8 жыл бұрын
this algorithm was actually created by the 3 stooges by accident
@DeViLTh0rn
@DeViLTh0rn 5 жыл бұрын
nuniezjorge good one 😂😂😂
@epsilonthedragon1249
@epsilonthedragon1249 5 жыл бұрын
If bubble sort is faster than you by a long shot, then something is horribly wrong.
@SassInYourClass
@SassInYourClass 11 жыл бұрын
2:30 What are you doing? It's already sorted!
@ado3247
@ado3247 6 жыл бұрын
it is checking if the elements havent moved themselves
@dnaroseandthewolves
@dnaroseandthewolves Жыл бұрын
Stop!! He's already sorted!!
@radovanbabjak7903
@radovanbabjak7903 4 жыл бұрын
Somebody made this algorithm Looked at how long it takes to sort this little array *4 years, perfect*
@FabbrizioPlays
@FabbrizioPlays 3 жыл бұрын
If Slow Sort is just a paranoid merge sort, then Stooge Sort is a paranoid bubble sort.
@theplayer12312
@theplayer12312 Жыл бұрын
its a paranoid gnome sort
@Konym
@Konym 5 жыл бұрын
The algorithm just decides to have a seizure for like the past half minute or so while the integers are already sorted.
@beatlestaute221
@beatlestaute221 6 жыл бұрын
When she says “ just to be sure” 2:30
@leandroaraujo4201
@leandroaraujo4201 5 жыл бұрын
3 secs later - Oh, did I make sure everything was fine? Meh, just in case.
@tansly5001
@tansly5001 8 жыл бұрын
the most musical sorting algorithm i have ever seen
@wawawa-u8f
@wawawa-u8f 2 жыл бұрын
i thought the same too lmao
@KingJellyfishII
@KingJellyfishII 5 жыл бұрын
You know you're board when a sorting algorithm makes you laugh
@myrjavi
@myrjavi 3 жыл бұрын
Hi! I’m chalk
@dnaroseandthewolves
@dnaroseandthewolves Жыл бұрын
Yo, I'm marker
@clyde-or-monty
@clyde-or-monty Жыл бұрын
eyyy im the eraser wassup
@vitakyo982
@vitakyo982 6 жыл бұрын
It's safer to check several times
@epickittystudios1041
@epickittystudios1041 8 жыл бұрын
THE SLOWEST SORT I HAVE EVER SEEN... other than slow sort (obviously)
@Frabjous1
@Frabjous1 8 жыл бұрын
I suppose you haven't seen Bogosort or Bogobogosort.
@aaronvxblu215
@aaronvxblu215 8 жыл бұрын
Or bozo sort.
@PandoraSystem
@PandoraSystem 7 жыл бұрын
Frabjous bogobogosort? How do you recurse total randomness?
@exedeath
@exedeath 7 жыл бұрын
1-x=1 2-Sort the first number by randomness. 3-go to 6 4-x=x+1 5-Sort the first x numbers by radomness. 6-If there are more numbers at the list go to 4, if not go to 7 7-The list is sorted.
@theAmazingJunkman
@theAmazingJunkman 6 жыл бұрын
bogosort is not a sorting algorithm. its a meme.
@derpboi3155
@derpboi3155 2 жыл бұрын
Stooge sort: an insecure algorithm that checks its work every other second to make sure it hasn’t rearranged itself.
@therealelement75
@therealelement75 Жыл бұрын
Ok let's check the first ⅔ That part's solved Now the last ⅔ It's already solved yay Wait let's check the first ⅔ because why not And each 2/3 is sorted with Stooge Sort. 【Efficiency -67%】
@gravelstudios
@gravelstudios 5 ай бұрын
Stooge sort is my favorite sorting algorithm, because unlike most of the other "bad" sorts, Stooge sort is the type of thing you could imagine a freshman comp sci major coming up with and thinking it's very clever, and being proud of it. Let's face it, we've all written our own Stooge sort at some point when we didn't know any better.
@Erunaamo
@Erunaamo 11 жыл бұрын
Flight of the Bumblebee
@TarigonTetradactyl
@TarigonTetradactyl 5 жыл бұрын
the stooge sort has a strange phobia that the subjects moved themselves while it asnt looking
@prohacker5086
@prohacker5086 6 жыл бұрын
the algorithm is a little nervous i guess?
@KingJellyfishII
@KingJellyfishII 5 жыл бұрын
Paranoid that the array will change behind its back
@TarigonTetradactyl
@TarigonTetradactyl 5 жыл бұрын
trust noone
@philiphunt-bull5817
@philiphunt-bull5817 3 жыл бұрын
Not even yourself.
@zelikris
@zelikris 10 жыл бұрын
Troll Sort
@KasranFox
@KasranFox 9 жыл бұрын
zelikris nah, that's bogo sort.
@chase_like_the_bank
@chase_like_the_bank 8 жыл бұрын
+Kasran Fox nah because this one actually functions, and someone who didn't know better might accidentally use it. Nobody is going to accidentally bogosort their data.
@KasranFox
@KasranFox 8 жыл бұрын
chasenallimcam Fair enough, haha.
@kristiansims
@kristiansims 7 жыл бұрын
+hal But if someone did bogosort their data, it would be, by definition, accidental.
@Al93271
@Al93271 6 жыл бұрын
Did you call it troll sort because at the end it checks it even though it doesn't need to and spends like 20 secs doing so?
@TarigonTetradactyl
@TarigonTetradactyl 5 жыл бұрын
"ok lets moves this he- wait i gotta check if the others moved anywhere"
@RainbowManification
@RainbowManification 7 жыл бұрын
ADHD sort
@RoadkillD418
@RoadkillD418 5 жыл бұрын
I have severe OCD *and* severe ADHD. This is what my brain looks like.
@bunbunnbunnybun
@bunbunnbunnybun 4 жыл бұрын
Sure
@NoriMori1992
@NoriMori1992 4 жыл бұрын
Same, even with just ADHD my brain is basically exactly like this.
@ouch9841
@ouch9841 4 жыл бұрын
Alzheimer's.
@happypiano4810
@happypiano4810 3 жыл бұрын
@@NoriMori1992 Nah. ADHD alone doesn’t do this much recursion. We have BOGOsort.
@lunardoesmusic
@lunardoesmusic 6 жыл бұрын
It sounds so indecisive.
@melodiquest
@melodiquest 6 жыл бұрын
Absolutely love the sound of this one.
@DaemonWorx
@DaemonWorx 4 жыл бұрын
Stooge Sort: Bubble Sort on a sugar high with a general anxiety disorder
@mauricestardddude8317
@mauricestardddude8317 5 жыл бұрын
"I am not really sure... better check again"
@rich1051414
@rich1051414 5 жыл бұрын
I find this sorting algorithm kind of endearing. Reminds me of pets I have had.
@vibronik
@vibronik 8 жыл бұрын
it sounds like crazy ass video game dungeon music. Like if Koji Kondo went insane
@eaglelord145
@eaglelord145 2 жыл бұрын
I didn't think I'd ever see a sorting algorithm with anxiety
@FlaxTheSeedOne
@FlaxTheSeedOne 5 жыл бұрын
Okey this is like a slowsort with even a bigger amount of paranoia of elements moving
@PaxeM
@PaxeM Жыл бұрын
I listen this as a musician, and it's very interesting... I don't care about efficiency ! 🙂🙃
@andrasfogarasi5014
@andrasfogarasi5014 5 жыл бұрын
2:30 *Uh, you can stop now.*
@leandroaraujo4201
@leandroaraujo4201 5 жыл бұрын
Nah, just to make sure everything's fine. Lol
@faizanullahkhan1282
@faizanullahkhan1282 4 жыл бұрын
This is what happened to BubbleSort after years of humiliation
@charlieferme5274
@charlieferme5274 4 жыл бұрын
*Franticly google searches is it normal to feel emotions to sorting algorithms*
@inactiv4822
@inactiv4822 5 жыл бұрын
Me: Bogo, are you fast? Bogo: Yes but actually no
@Ambipie
@Ambipie 4 жыл бұрын
Ive seen the other anxiety sorts. But this is the first anxious sorter that didnt believe it was done. Was this sort invented with a broken server in mind?
@therealelement75
@therealelement75 Жыл бұрын
It shows how NOT to use recursion It checks the first ⅔ with Stooge Sort, checks the last ⅔ with Stooge Sort, then checks the first ⅔ again with Stooge Sort. So if you give Stooge Sort an already sorted list, it will basically check the first ⅔, check the last ⅔, then checks the first ⅔ for if any magical shuffling happened. It would be slower than Bogosort if both were fed an already solved list. If fed a scrambled list, Bubble Sort would be faster.
@dlwatib
@dlwatib 5 жыл бұрын
Larry, Mo and Curly would be so proud!
@kmktruthserum9328
@kmktruthserum9328 10 жыл бұрын
o its u coloring each line in paint... that takes lots of time.
@Reitenshii
@Reitenshii 10 жыл бұрын
It's the program that does it...
@kmktruthserum9328
@kmktruthserum9328 10 жыл бұрын
yea i think i was high when i commented.
@mariafe7050
@mariafe7050 3 жыл бұрын
@@kmktruthserum9328 I love how your reply has more likes than the original comment.
@therealjammit
@therealjammit 6 жыл бұрын
Just slightly better than a bogo sort.
@inactiv4822
@inactiv4822 5 жыл бұрын
When bogo sort tries the best
@tungto2527
@tungto2527 10 жыл бұрын
159.367 array accesses @_@
@zoned7609
@zoned7609 8 жыл бұрын
159,367*
@AidenOcelot
@AidenOcelot 6 жыл бұрын
CaligulaClone some places use decimals in place of commas and vice versa
@hymnodyhands
@hymnodyhands Жыл бұрын
I love that this is Creative Commons ... the musicality here is almost begging for collaboration...
@mekaindo
@mekaindo 3 ай бұрын
2:24 those swapped elements in the middle of the array waiting for stooge lmao
@jakerussell135
@jakerussell135 4 жыл бұрын
Insertion sort but it's paranoid that stuff was moving around when it wasn't looking
@SuperfieldCrUn
@SuperfieldCrUn 2 жыл бұрын
Stooge Sort first recursively sorts the first 2/3rds of the list, then the second 2/3rds, then the first 2/3rds again. The first pass ensures that the largest values are in range of the second pass to place in correct order, then the third pass sorts what's left over. You can probably see why this algorithm is so horribly inefficient - while the final third of the list is only given one pass, the first third is given two and the middle third is given three. This results in a lot of wasted work as it sorts and resorts parts that have already been sorted and times where any real swaps are made are rare - and the recursion means that this redundancy will be multiplied again and again. A slight optimization can be made where, if the second pass does not result in any swaps, then the third pass can be skipped. However, the sheer amount of redundant work done with this algorithm regardless of optimization cements it as a thought experiment and not something that has any practical purpose. That said, it is at least easy to implement: if the list is size 2, then swap if out of order; otherwise, calculate pass size (2/3rds of sub-list size, rounding up) and recursively call itself three times using the proper positions based on the pass size.
@igneousorgan6435
@igneousorgan6435 2 жыл бұрын
Watching this made me think about dementia.
@Ambipie
@Ambipie 2 жыл бұрын
Both it and Slow Sort behave like an antivirus. "Did something go wrong while I was over here?" Like a librarian checking for anything that fell off the shelf
@samuels1123
@samuels1123 2 жыл бұрын
Stooge sort operates assuming the worst possible given order, meaning at least if assuming comparison takes 0 time it would always complete the same list at the same speed
@ScarletEmber64
@ScarletEmber64 Жыл бұрын
step 1: sort items step 2: sort again just in case step 3: ooone more time step 4: okay juuuuuust in case step 5: once again, you never know step 6: hmm I'm still not surrre step 7: maaaybe juuuust in case step 8: alright that's- oh wait gotta double check step 9: alright ooone more check step 10: alright gonna go through steps 1-9 again juuuuust in case step 11: okay okay just oooooone more time step 12: okay mayyyybe once more step 13: done!
@jeredLopez
@jeredLopez 3 ай бұрын
Stooge sort:scared he might’ve messed up
@eggyrepublic
@eggyrepublic 5 жыл бұрын
Bogo sort is the master sort
@TheEnderLeader1
@TheEnderLeader1 5 жыл бұрын
Get Sheet Music Boss to do a cover of this.
@64_bit80
@64_bit80 3 жыл бұрын
2:31 checking my answers on a test for the 5th time
@irgendwerausbayern1999
@irgendwerausbayern1999 7 жыл бұрын
BubbleSort is better than StoogeSort.
@billybobjoe198
@billybobjoe198 5 жыл бұрын
Is there a sort method that just look at one bar, then checks the neighbors, and then sorts those, then move on to the next, and then just does that over and over until it's sorted? So, is 0 smaller than 1? Yes? Okay. Is 1 smaller than 2? No, Swap. Is new 2 smaller than 3? Yes? Is 3 smaller than 4? etc etc.
@bobczech7774
@bobczech7774 11 ай бұрын
basically the trash version of circle sort that sorts the before sorted bits first if you look at what the unsorted crap looks like for both
@zacjacob4349
@zacjacob4349 6 жыл бұрын
2:30 It's finished, you can stop now.
@SomeDudeInBaltimore
@SomeDudeInBaltimore 5 ай бұрын
This looks like it would absolutely trash an SD card doing a direct external sort.
@andrasfogarasi5014
@andrasfogarasi5014 7 жыл бұрын
Looks like epilepsy.
@mechanicalsnail4703
@mechanicalsnail4703 7 жыл бұрын
?Why
@zinderzaz1345
@zinderzaz1345 7 ай бұрын
Literal example of: *ARE YOU SURE!?!?*
@ScribblePleb
@ScribblePleb 3 жыл бұрын
Code with anxiety. Nice
@ghostgirl4443
@ghostgirl4443 3 жыл бұрын
even the captions think it's music
@lookadooka_
@lookadooka_ 3 жыл бұрын
I can't explain it but this algorithm has anxiety
@The-pf4zy
@The-pf4zy 7 жыл бұрын
Looks like Slow Sort.
@ohgodpleasehelpme4337
@ohgodpleasehelpme4337 Жыл бұрын
This is what Sorting algorithm with OCD looks like
@rex9003
@rex9003 3 жыл бұрын
no mercy for stooges
@teodorb.p.composer
@teodorb.p.composer 3 жыл бұрын
My faavourite music.
@oogooro
@oogooro 3 жыл бұрын
this is the most furry sort i've ever seen
@azertycraftgaming
@azertycraftgaming 2 жыл бұрын
Could it be useful for redundant checking like in radiation zones or whatever?
@nunsense9489
@nunsense9489 5 жыл бұрын
Better be sure than of not aight?
@Gamesmarts194
@Gamesmarts194 Жыл бұрын
I'm watching this with x2 speed and it's STILL painfully slow lol
@darkgalaxy8104
@darkgalaxy8104 5 жыл бұрын
This is cancer... This is not okay... It's time to stop...
@getcaughtin4klol752
@getcaughtin4klol752 Жыл бұрын
"bogo sort is bad" stooge sort:
@atomicrhino7182
@atomicrhino7182 6 жыл бұрын
If this isn’t the most stable sort ever created we need to burn it
@audreychambers3155
@audreychambers3155 2 жыл бұрын
Stooge sort might not be efficient, but it is relatable.
@MoolsDogTwoOfficial
@MoolsDogTwoOfficial 3 ай бұрын
Insertion Sort but with severe undiagnosed OCD
@wawawa-u8f
@wawawa-u8f 2 жыл бұрын
0:03 old arcade background music be like:
@Peron1-MC
@Peron1-MC 3 жыл бұрын
very dramatic sounding XD
@okboing
@okboing 2 жыл бұрын
the least efficient data-oblivious sorting algorithm
@angeredgoose7552
@angeredgoose7552 2 жыл бұрын
hes trying his best ok
@j6moon15
@j6moon15 6 жыл бұрын
.25 speed its like music
@mistiebluern
@mistiebluern 2 жыл бұрын
sounds like boss music
@webx135
@webx135 7 жыл бұрын
Bogo sort is faster than this.
@greenzie7099
@greenzie7099 6 жыл бұрын
No fucking way
@Obstagoon862
@Obstagoon862 6 жыл бұрын
+WebX Liar, liar, pants on fire!
@Optim121
@Optim121 5 жыл бұрын
@@greenzie7099 bogosort has the potential to sort an array of any size in one go. Obviously it's the best sort.
@awawpogi3036
@awawpogi3036 5 жыл бұрын
Yes it is the fastest only if you are the luckiest person in the world
@TarigonTetradactyl
@TarigonTetradactyl 5 жыл бұрын
you've never seen bogo have you
@Supernoxus
@Supernoxus 5 жыл бұрын
Is this algorithm suffering from alzheimers?
@inactiv4822
@inactiv4822 5 жыл бұрын
Bogo sort + Slow sort is Stooge sort
@noticeme6412
@noticeme6412 3 жыл бұрын
this sort was basically invented to show how NOT to use recursion
@rlira8072
@rlira8072 4 жыл бұрын
This is paranoia in code form
@FarmYardGaming
@FarmYardGaming Жыл бұрын
I can sort of see what it's trying... but lmao
15 Sorting Algorithms in 6 Minutes
5:50
Timo Bingmann
Рет қаралды 24 МЛН
10 FORBIDDEN Sorting Algorithms
9:41
Ardens
Рет қаралды 841 М.
OMG what happened??😳 filaretiki family✨ #social
01:00
Filaretiki
Рет қаралды 12 МЛН
Running With Bigger And Bigger Feastables
00:17
MrBeast
Рет қаралды 123 МЛН
My Cheetos🍕PIZZA #cooking #shorts
00:43
BANKII
Рет қаралды 26 МЛН
Schoolboy Runaway в реальной жизни🤣@onLI_gAmeS
00:31
МишАня
Рет қаралды 2,2 МЛН
งานโมขอให้บอก จะเอาตามงบหรือตามใจก็ได้
18:06
บริษัท เอสซีโมดิฟายด์ จำกัด
Рет қаралды 24
Slow sorting: Stooge sort and Bogo sort
40:53
udiprod
Рет қаралды 461 М.
Slow Sort
3:05
Timo Bingmann
Рет қаралды 317 М.
Bitonic Sort's Sick Beats
2:01
Musicombo
Рет қаралды 1,2 МЛН
Quicksort Algorithmus [mit Animation, Deutsch]
11:12
HappyCoders
Рет қаралды 17 М.
Tim Sort
2:08
Timo Bingmann
Рет қаралды 220 М.
Oscilloscope Music Kickstarter (June 2015)
3:03
Jerobeam Fenderson 📟
Рет қаралды 3,2 МЛН
Новая функция в Xiaomi! Apple скопирует?
0:45
ÉЖИ АКСЁНОВ
Рет қаралды 1,3 МЛН
Это Google Pixel 9 и это стиль!
0:47
Romancev768
Рет қаралды 315 М.
Kumanda İle Bilgisayarı Yönetmek #shorts
0:29
Osman Kabadayı
Рет қаралды 4,6 МЛН
Data recovery from MicroSD using PC3000 Flash & Spider Board 😎
1:01
Xeon лучше Core i7? #intel #xeon #игровойпк
0:59
CompShop Shorts
Рет қаралды 155 М.
Новый фонарик в iPhone с iOS 18
0:49
Wylsacom
Рет қаралды 180 М.
Nokia imba #trollface #sorts
0:31
SodnomTsybikov
Рет қаралды 5 МЛН