Insertion Sort vs Bubble Sort + Some analysis

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

Комментарии • 314

  • @udiprod
    @udiprod  7 лет назад +655

    Thanks everyone again! I wish I could upload more frequently. There are already some new ideas brewing. I hope I'll get to working on it soon. But yes, it will take some time again :)

    • @coolmdj111
      @coolmdj111 7 лет назад +24

      Hi udiprod... Let me just say, I like your explanations and how simple you make things to understand. I'm curious as to why you're not moving towards expanding your production and making your videos more frequent. _Patreon_ could help a lot and I for one would really look forward to more stuff from you.

    • @eggpling
      @eggpling 7 лет назад +7

      Love the content, wish it could happen more often! But time and life and whatnot. Though... I want an explanation on how Radix Sort works... because it doesn't do comparisons (right?).

    • @tobivan3190
      @tobivan3190 7 лет назад +2

      i want to see radix sort, but i don't know if it would fit this format

    • @ayeariola
      @ayeariola 6 лет назад +3

      udiprod how about radix sort and bucket sort and cocktail shaker sort?

    • @taureon_
      @taureon_ 6 лет назад +6

      COCKTAIL SHAKER SORT

  • @i_teleported_bread7404
    @i_teleported_bread7404 4 года назад +690

    Leave Bubble Sort alone, it's trying it's hardest.

    • @no-one-1
      @no-one-1 3 года назад +53

      At least it has a brain and eyes unlike Bogosort

    • @feritperliare2890
      @feritperliare2890 3 года назад +30

      bogosort has eyes to check if he succeeded but it just basically throws the marbles to the ground than vaguely decides their order and than checks if it succeeded

    • @Pihsrosnec
      @Pihsrosnec 2 года назад +5

      @@no-one-1 hey, bogosort has a very karge brain. By that I mean it uses more to do the same thing because randomly sorting something is actually kinda resources intensive

    • @lovermillion
      @lovermillion 2 года назад +3

      Bubble Sort is still useful! As long as you only care about the largest/smallest element in a set, that is

    • @ru2979
      @ru2979 2 года назад

      😂😂

  • @SuperfieldCrUn
    @SuperfieldCrUn 5 лет назад +606

    HOLY SHIT did you just clearly explain the concept of N operations and how they grow as the input grows using graphing based on a clear visual metaphor?!?

  • @TheGeneralThings
    @TheGeneralThings 7 лет назад +800

    The analysis at the end...
    You just made one of the best videos on sorting on RUclips.
    Please make more analyses when you have the time. We'll be patient ❤️

    • @meenaljain3828
      @meenaljain3828 4 года назад +3

      Still there are 31 fools who unliked the video

    • @weegeenumberone2
      @weegeenumberone2 3 года назад +1

      @@meenaljain3828 Ahem, 36 fools.

    • @maybej
      @maybej 2 года назад

      @@meenaljain3828 disliked*

    • @clown6930
      @clown6930 Год назад +1

      @@meenaljain3828unliked????? 😭😭💀

    • @Manny73211
      @Manny73211 Год назад

      honestly insertion sort, by the looks of is, is just a backwards bubble sort. I still have no clue, since I don't know EXACTLY how bubble sorts work yet. can someone please link the video?

  • @lare290
    @lare290 7 лет назад +328

    This is the best video on sorting I've seen on this channel. The part where you analyzed the speeds of the algorithms was very clear and concise.

  • @ditrixgenesis781
    @ditrixgenesis781 5 лет назад +345

    I remember in my CS class being told that nlog (n) is the most efficient path for computers to take. Now I know why

    • @zeronothinghere9334
      @zeronothinghere9334 4 года назад +46

      Sorry to butt in. But: You know why nlog(n) is better than n^2, but you don't know why nlog(n) is the most efficient. I could claim that there is an algorithm that can do it in n time, and you would not be able to prove me wrong.
      __
      In the model that is used in the video (compare comparisions done of whole objects), nlog(n) indeed is the shortest possible time (you can prove that by considering all the possible permutations, and mapping them on a decision tree). However, if you consider a different model, the RAM model, you are able to sort integers in near linear time (in just n). This sorting algorithm is called Radix sort.
      __
      Please don't take offense to this, I just want to avoid you from possibly misunderstanding what you think you know.

    • @TheShinySnivy
      @TheShinySnivy 4 года назад +8

      But O(n) is the best algorithm?
      An average of O(n) isn’t found in sorts though, if I recall correctly.

    • @ZachGoethel
      @ZachGoethel 4 года назад +22

      @@TheShinySnivy Radix sort is non-comparative but achieves linear runtime complexity. It can do so because it has access to the digits of the values being sorted (rather than only a less-than, greater-than, or equal-to). It's essentially a count sort, but performed multiple times to count sort by each digit (base-10) or other radix (like base-256).

    • @Ascyt
      @Ascyt 4 года назад +1

      stop u make my brain hurt

    • @romannasuti25
      @romannasuti25 3 года назад +9

      O(n log(n)) is the best you can do given comparison sorts, where the sorting algorithm only has information on greater, less than, or equal to.
      Given most data has some sort of absolute order (not only larger than, but by exactly how much), you can achieve O(n) by using a counting sort.
      Say you're sorting an array of thousands of elements, but they're all numbers from 0 to 9. The easiest way to sort them is actually to just count how many 0's, 1's, and so on until you've gotten to 9, then put out as many 0's as is counted, then 1's, and so on.
      Radix sort is just a way to make counting sorts space-efficient: Instead of scaling linearly with the number of possible values (256 for an 8 bit int or char, 65536 for a 16 bit int, and over 4 billion for a 32 bit int), it scales logarithmic-ally which is much better. Even better, radixes require almost no cross-communication (after all, no comparisons) with a very simple way to combine the results of multiple radix sorts (just add all the counts together), making them very easy to scale across potentially thousands of computers (perfect if you were trying to sort trillions of items across an enormous Cassandra or HBase cluster).
      Basically, if you were doing a 32-bit integer, instead of keeping over 4 billion counts, you keep 4 sets of 256 counts, one for each 8 bits. It's cumbersome to explain, but the core of it is a piecewiise counting sort using prefix sums to make it work.

  • @silviamayo2993
    @silviamayo2993 6 лет назад +44

    I love math and sorting and the intellectual part of this...but I also just love watching the little robots pick up those balls and bring them up to analyze them two at a time...all the little competitions are so cute, while at the same time being incredibly educational.

  • @DiThi
    @DiThi 7 лет назад +17

    This explains nicely some reasons behind Timsort, which uses insertion sort for tiny parts and merge sort for bigger parts.

    • @groszak1
      @groszak1 5 лет назад +4

      also when merging it can recognize large parts that are in one list but not the other and be adaptive to it

  • @halfnwhole751
    @halfnwhole751 6 лет назад +316

    Can you make a vid about Gravity sort?
    I kinda wanna see a robot doing magic tricks :)
    Also please make a video about Langtons Ant? :D
    Also Counting Sort plz😀

    • @SonicPman
      @SonicPman 5 лет назад +19

      Then I guess we just represent the objects with numbers then.

    • @SendarSlayer
      @SendarSlayer 5 лет назад +32

      @@metachirality Not really sorting objects here, sorting by darkness. That's a number

    • @CyberQuickYT
      @CyberQuickYT 5 лет назад +3

      Also drinkshaker would be cool

    • @KnakuanaRka
      @KnakuanaRka 4 года назад +2

      The Tutorials You mean cocktail shaker? I’m pretty sure that’s basically the same as bubble sort, but it scans back and forth across the list of numbers instead of going in the same direction each time.

    • @h3nry_s71ckm1n
      @h3nry_s71ckm1n 4 года назад +1

      @@KnakuanaRka Cocktail Shaker Sort is just faster than Bubble Sort

  • @rajmadheshia8791
    @rajmadheshia8791 7 лет назад +104

    Analysis part in this video is great....
    please add this part in every future videos.

  • @nmmm2000
    @nmmm2000 Год назад +3

    Thanks for including the "map" of comparisons. Watched the video several times during the years and every time finding something useful.

  • @Flamehazard
    @Flamehazard 5 лет назад +15

    These videos are so awesome, the sorting mechanics are so interesting, plus, the low poly looking models, along with the lesser texture quality really gives it a charm.

  • @katlicks
    @katlicks 4 года назад +7

    These are absolutely amazing. I've been watching sorting algorithms for a while now but never really grasped how someone could devise the algorithms, but with the visualization, it's far more simple than what I was making it out to be.

  • @epsilonthedragon1249
    @epsilonthedragon1249 7 лет назад +56

    A new udiprod video on sorting! I love these videos.

  • @MrLuigiBean1
    @MrLuigiBean1 2 года назад +1

    That graph visualization at the end was ABSOLUTE GENIUS!

  • @FluffyPrincess888
    @FluffyPrincess888 2 года назад +1

    You sound like a combination of a caring mother and a patient math teacher. I like it. Especially because of how I'd want a teacher like this. I have ADHD.

  • @noahkilgus9860
    @noahkilgus9860 4 года назад +1

    These sorting videos are by far my favorite videos I've ever seen

  • @nullivory
    @nullivory 7 лет назад +46

    following channels you think are dead pays off

  • @juice8960
    @juice8960 7 лет назад +3

    I love how these videos could help do every day lives especially for sorting

  • @The-pf4zy
    @The-pf4zy 6 лет назад +11

    I can't wait for Radix Sort (LSD)! That sort is my favorite.

  • @athinaej
    @athinaej 2 года назад +2

    this was LIFE CHANGING. NEVER have my eyes witnessed such beauty before this glorius day. thank you. for everything. 😘😘

  • @want-diversecontent3887
    @want-diversecontent3887 7 лет назад +14

    Places:
    1. Merge Sort (25, 23)
    2. Heap Sort (39)
    3. Quick Sort (21, 33)
    4. Insertion Sort (30)
    5. Bubble Sort (44, 42)

    • @Junieper
      @Junieper 5 лет назад +4

      Nah, QuickSort very slightly outperforms both heap and mergesort. The 33 was due to QS picking bad pivots (on purpose)

  • @givlupi2686
    @givlupi2686 4 года назад +9

    Imagine this with Bogosort. Insertion sort completes sorting the ten balls after just 30 comparisons, and then starts waiting for Bogosort to get done. Eventually, Insertion starts reading the newspaper, and checks his watch to see that it has been 4 hours since Bogo began. Insertion gets bored and leaves, but comes back the next day, to find that Bogo is still no closer to sorting the balls. 50 years later, Insertion comes back with a bushy white beard, with his grand kids carrying 5 trophies that he won in sorting competitions while he was gone, Bogo is still no closer, even after 50M more comparisons. In 2163, Insertion's great-great-grandson comes back to find Bogo has finally finished sorting.

    • @legendgames128
      @legendgames128 2 года назад

      well 50 million is a lot for an average of 3.6 million per solve on average.

  • @alexanderthomas-owen613
    @alexanderthomas-owen613 7 лет назад +2

    I've learnt more from these little sorting videos than I did in about three lessons of Computer Science. Good work!

  • @davidmendoza4521
    @davidmendoza4521 4 года назад +11

    I love how all the comments are so supportive and it makes the content even more wholesome

  • @ydz8342
    @ydz8342 4 года назад +4

    I just want to thank you for making the best sorting algorithm videos I have ever seen!
    Also, the analysis part is brilliant!

  • @rohangh3577
    @rohangh3577 3 года назад +1

    I think this video is among the best videos on the internet, and it also shows that it's not only animations that make the video best, it is the mind behind it.. orz

  • @dhanarsantika
    @dhanarsantika 7 лет назад +59

    Finally udiprod make another video :D

  • @jl-fy3zj
    @jl-fy3zj 5 лет назад +33

    "You want Radix LSD?"
    "I want Base Ten!"
    "YOU CAN'T HANDLE BASE TEN!!!"

    • @Kumquat_Lord
      @Kumquat_Lord 5 лет назад +2

      Base 10: AAAAAAAAAAAAAAAAAAAAAAAHHHHHHHH

    • @jl-fy3zj
      @jl-fy3zj 5 лет назад +1

      All I want is a few good ten

    • @4te-9
      @4te-9 4 года назад +2

      Base 16: let me introduce myself

    • @segaking5846
      @segaking5846 4 года назад

      In-Place base 10: Ahem.

  • @iwersonsch5131
    @iwersonsch5131 3 года назад +1

    If comparisons are costly but swaps are not (or moving multiple items at a time is barely more costly than moving a single item), you can do binary insertion sort to use about O(n*log(n)) comparisons but about O(n^2) swaps. Unlike Quicksort, this doesn't rely on luck since the pivots we are choosing are already in a sorted list.

  • @hil449
    @hil449 3 года назад

    jesus christ this is amazing! Every cs student SHOULD watch this video series, its so awesome!

  • @edems131
    @edems131 10 месяцев назад +1

    BEST video on algorithms i found yet, LOVE IT

  • @o-k9267
    @o-k9267 5 лет назад +1

    Just got your channel in recommended and I must say one of the most comprehensible visualizations I've ever seen! I noticed you've not uploaded new videos for a long time, I hope this isn't the end. Best wishes!

  • @patcoston
    @patcoston 6 лет назад +2

    There are many variants to Bubblesort. This video shows one of the most inefficient variants. You can improve Bubblesort performance by sorting in both directions, and keep track of where the last swap occurred to avoid iterating through parts of the array that you know are sorted. You can even sort in both directions within the same loop.

    • @MinecraftLD10
      @MinecraftLD10 5 лет назад

      Patrick Coston The robots might need some upgrades for that.

    • @typhoonzebra
      @typhoonzebra Год назад

      I think one of the rules of the scenario is that the robots cannot remember any swap they've made. The only thing they can remember is their sorting methodology.

  • @petersmythe6462
    @petersmythe6462 3 года назад +1

    You can also dramatically reduce the number of comparisons insertion sort does by using binary search to figure out where the new item belongs. At least if you're dealing with an array not an LLL. This ends up with O(NlogN) comparisons and easily beats superior sorting algorithms on comparison count.
    however, it does not end up with O(NlogN) total moves but O(N^2). meaning it's still slow.
    One potential optimization would be to move the sorted data into a different data structure. LLLs come to mind since reordering an LLL is free but binary searching an LLL without indexing is an O(N) operation which is too slow.
    One possible solution then is to perform the search on a binary tree, where insertion is not such an inherently costly operation. Of course turns our insertion sort into BST sort but still, now it actually has NlogN performance.

  • @ronakpatil6081
    @ronakpatil6081 3 года назад

    these videos made the boring sorting techniques interesting hats off.

  • @Micha-Hil
    @Micha-Hil 5 месяцев назад +1

    Insertion sort at the end was just like "so wtf do i do now"

  • @elraviv
    @elraviv 7 лет назад +2

    Loved it!
    however bubble sort is sensitive to the sort direction,
    imagine a case where the largest element is first, and you sort it in the bottom up direction. then you need'll need *N passes* until the top elements will reach the bottom - on the other hand if you sort it from top to bottom you'll need only *1 pass* to sort it.
    this is why if you do use bubble sort, you run it iteratively in both directions.

    • @hyrekandragon2665
      @hyrekandragon2665 6 лет назад +3

      That's a different sort called cocktail shaker sort also known as bidirectional bubble sort

    • @musicexams5258
      @musicexams5258 2 года назад +2

      Bubble sort ran in both ways has its own name
      It is called "cocktail shaker sort"

  • @sarputhirith9570
    @sarputhirith9570 6 лет назад +1

    Thank for turning lesson into cartoon for representing the work. The best explanation.

  • @TeamNolex
    @TeamNolex Год назад +1

    *The time complexities are*
    Best: O(n)
    Average: O(n^2)
    Worst: O(n^2)
    Storage: O(1)

  • @sylvercritter
    @sylvercritter 7 лет назад +27

    The brawl finally continues...

  • @coruscaregames
    @coruscaregames 2 года назад +6

    Can you demonstrate a competition "rigged" in the underdog's favour? ie. Bubble sort vs merge sort on an almost sorted list, heap sort vs quick sort but you get half the balls now and half the balls when you're done with that, etc

  • @rollinontheboard
    @rollinontheboard 2 года назад +1

    Far better than anything Wikipedia would offer.

  • @alexander51413
    @alexander51413 7 лет назад +26

    Maybe radix sort next time? Great video btw

    • @YaboiMuggy
      @YaboiMuggy 6 лет назад +4

      oh the sorting videos with sounds with radix base 10 get so LOUD

    • @FplusETVChannel
      @FplusETVChannel 6 лет назад +1

      Radix sort is for sorting numbers not colors

    • @bojunchoi6354
      @bojunchoi6354 5 лет назад +5

      FplusE TV Channel you can easily number the colors

    • @326inminecraft
      @326inminecraft 5 лет назад

      Aaron Luedemann no, it would be something like 190,280,245,346,766,455
      For radix to works, single digit won’t do

    • @toddkes5890
      @toddkes5890 5 лет назад +1

      @@326inminecraft Radix could work if you translate the colors to binary values. So the darkest color would be 0000, then 0001, then 0010, aso. The lightest color would be treated as 9, or 1001. The question then is using MSD or LSD (MSD would be better, since it would show how Radix uses divide and conquer)

  • @mfaraday4044
    @mfaraday4044 5 лет назад +1

    Best channel for sorting algo

  • @thanyou
    @thanyou 5 лет назад +1

    The end of an era. Please come back :

    • @udiprod
      @udiprod  5 лет назад +2

      Thanks. I'm working on a new video. I hope to release it soon.

    • @thanyou
      @thanyou 5 лет назад

      @@udiprod That's awesome. Can't wait!

  • @Name-ul8es
    @Name-ul8es 2 года назад

    I was subbed to this channel years ago because the bots looked goofy and the videos were interesting but now I have grown and I am here again to learn and pass collage exams.

  • @Ken-S
    @Ken-S 3 года назад

    This video should be in every programming 101 education.

  • @tuftman6092
    @tuftman6092 6 лет назад +2

    I wish i could give two thumbs up, the explanation of the sorting time was superb

  • @yoshidude64595
    @yoshidude64595 3 года назад +1

    This would be an excellent introduction to big O notation

  • @thegardenofeatin5965
    @thegardenofeatin5965 4 года назад +4

    This series is the best content about computing I've found all year.
    I'm curious how these are made. Like, were they hand-animated in something like Blender or are they rigged to a simulation that's actually running the algorithms?

    • @SchadeTree
      @SchadeTree Год назад +1

      They said in another video that they use Autodesk Maya for their animations. Dunno if they do it by hand or rig it to the actual algorithms, but given the 40 minute bogo sort video I'd guess the latter

  • @realcygnus
    @realcygnus 7 лет назад +1

    great content as per usual ........more frequent posts & this would clearly be among the "top' channels of its kind.

  • @vanhsati
    @vanhsati 6 лет назад +1

    Legend says, each year, udiprod will have a day off from work. In this day, he ... :))

  • @redjohn1308
    @redjohn1308 5 лет назад +3

    Can you make a video about selection sort ? The videos are amazing bro .

  • @andrewcheng1948
    @andrewcheng1948 4 года назад +11

    Still no glasses on the robots!?it would increase efficiently by like,400%!

  • @AtaSancaktar
    @AtaSancaktar 6 лет назад +31

    You still haven't done Bogosort :)

    • @thatoneguy9582
      @thatoneguy9582 5 лет назад +16

      Rishi Is Here
      nevermind short-sighted, this robot’s fuckin blind

    • @diamboy
      @diamboy 5 лет назад

      That One Guy thats for bozo sort

    • @clam379
      @clam379 5 лет назад +5

      Bogo sort is still sorting the balls to this day

    • @AeroTheVaporeon
      @AeroTheVaporeon 4 года назад +2

      @@diamboy dont be mean hes trying his best

    • @want-diversecontent3887
      @want-diversecontent3887 4 года назад +4

      Oh my god udiprod actually did it
      And they animated it fully

  • @thegallivantinggamers4904
    @thegallivantinggamers4904 5 лет назад +2

    Next, can you please do Insertion versus selection sort?

  • @_danzo7
    @_danzo7 6 лет назад +1

    Wow guys u put a lot of effort on ur vids i really appreciate that

  • @cyanuwu1864
    @cyanuwu1864 Год назад

    and so, here we are again, watching educational videos at midnight trying to sleep

  • @CGVerseSchool
    @CGVerseSchool 6 лет назад +1

    wonderfull video. explained the log(n) i was always wondering about in terms of performance and scalability of a method.

  • @manoking9619
    @manoking9619 Год назад +1

    This is awesome! These videos are going to carry me throug my algorithms course!

  • @psychologyfacts1718
    @psychologyfacts1718 4 года назад +1

    first tym in 4 years I got the concept right love from Pakistan

  • @pun5925
    @pun5925 4 года назад +1

    im oddly addicted to these

  • @neyraxstuff-inactive7624
    @neyraxstuff-inactive7624 7 лет назад +1

    Yes I was waiting for this. I really liked the previous parts so I want to see one about insertion. Thank you :)

  • @FlumenSanctiViti
    @FlumenSanctiViti 4 года назад +1

    How about a video on Timsort, most likely quickest sorting algorithm of them all?

  • @parjohansson3118
    @parjohansson3118 7 лет назад +2

    You're alive! You're alive!

  • @0Arman0
    @0Arman0 4 года назад

    That animation at the end was so legit

  • @jpbling8344
    @jpbling8344 7 лет назад +4

    This is so relaxing and fun!

  • @arlcun
    @arlcun Год назад

    This is awesome!
    Recently youtube added the ability to change audio track to another language, I would love to help for dubbing in french

  • @dentistrider3874
    @dentistrider3874 2 года назад

    Not here for computer science. Here for the intense competition. It wasn't even a fair match. You'll always be the winner in my heart Bubble Sort :_)

  • @davidvelasco4423
    @davidvelasco4423 4 года назад

    STANDINGS:
    21 Quicksort
    44 Bubble Sort
    44 Merge Sort
    52 Quicksort
    39 Heap Sort
    23 Merge Sort
    30 Insertion Sort
    44 Bubble Sort

  • @thejbo777
    @thejbo777 7 лет назад +1

    Yay a video!
    See you next year!!!

  • @flamingogh_
    @flamingogh_ 2 года назад +1

    Insertion sort is usually how I sort things, though admittedly a bit less robotic.

  • @hyperclipse
    @hyperclipse 4 года назад +1

    Legends Say The Comparison Amount Is Still Racing...

  • @vakayamini3782
    @vakayamini3782 4 года назад

    Robots are really nice.
    Competition is awesome😀

  • @larrykelly8508
    @larrykelly8508 5 лет назад +1

    It has been a year, WHERE ARE YOU?!

    • @udiprod
      @udiprod  5 лет назад

      I'm working on new videos. I hope to post them soon.

    • @larrykelly8508
      @larrykelly8508 5 лет назад +1

      Can you make selection sort and cocktail sort

    • @udiprod
      @udiprod  5 лет назад

      Yes, they're often requested. I'll try to get to them too.

    • @larrykelly8508
      @larrykelly8508 5 лет назад

      I edited my last comment because I realized that selection and shell start with s so I decided to keep your sorts all different letter beginners and I think cocktail sort can be more fun

  • @FplusETVChannel
    @FplusETVChannel 6 лет назад +1

    Even before the match I knew insertion sort would win

  • @kashishdhawan9966
    @kashishdhawan9966 5 лет назад +1

    Lovely demonstration

  • @wesbarnes1682
    @wesbarnes1682 7 лет назад +1

    Glad to have a new video

  • @zvitleysa
    @zvitleysa 6 лет назад

    Do counting sort, gravity sort or bogo sort next

  • @jademonass2954
    @jademonass2954 4 года назад +1

    are bubble sort and insersion sort the same thing but one backwards?

  • @Fitnesslabel
    @Fitnesslabel 11 месяцев назад

    What is really the difference between the two. Both involves comparing the neighbors and swapping

  • @kartikiyer3067
    @kartikiyer3067 4 года назад +1

    Could you do a video on BOGO sort vs some other sorting algorithm like gravity or insertion sort?

  • @nanchoparty
    @nanchoparty 6 лет назад

    I'd like to see Gravity Sort, Counting Sort, and Radix Sort

  • @tarunprasad98
    @tarunprasad98 6 лет назад +1

    Could you please make videos on pointers and self referential structures?

  • @PointToNull
    @PointToNull 5 лет назад +1

    These videos are amazing. Great content!

  • @sarathm3635
    @sarathm3635 5 лет назад +1

    finally a video worth my time

  • @rainydays3683
    @rainydays3683 4 года назад

    Welcome back to why is this in my recommends and why do i like it?

  • @zandnothinga7367
    @zandnothinga7367 7 лет назад +1

    They are back 0.0

  • @alizeeshan7447
    @alizeeshan7447 3 месяца назад

    Maybe if you use numbers on ball instead of colours then it will be more clearer... Comparing colours intensity is sometimes difficult... JazakuMuLLahu Khairan...

  • @danieldelizaur435
    @danieldelizaur435 7 лет назад +4

    See you next year :D

  • @panulli4
    @panulli4 7 лет назад +3

    First!!!!
    One of the best channels on RUclips!!!!

  • @puneetchhabra2578
    @puneetchhabra2578 Год назад +1

    what an awesome explanation

  • @catgirlQueer
    @catgirlQueer 6 лет назад +3

    Bogo sort next please!

    • @lillyanjohnson5545
      @lillyanjohnson5545 4 года назад

      What would make it a close game except for luck and two bogos?

  • @joshix833
    @joshix833 5 лет назад +1

    With your Upload-Shedule your next Video should come soon. NICE.

  • @johnfrancisdoe1563
    @johnfrancisdoe1563 5 лет назад

    More interested in newer n log n algorithms that also optimize the memory operations cost, such as tsort.

  • @tuesdaymartesvr1942
    @tuesdaymartesvr1942 4 года назад

    I think the heap sort would be good by doing quick sort to make 2 groups

  • @andrewsalmon100
    @andrewsalmon100 5 лет назад

    Fantastic. Thanks. So this is about AI and computer efficiency. And can it be applied to commercial processes?

  • @JM-us3fr
    @JM-us3fr 6 лет назад +2

    But can't you do Insertion Sort using a binary search on the sorted part? Theoretically this would cut it down to n*log(n) as well.

    • @udiprod
      @udiprod  6 лет назад +1

      This reduces the number of comparisons, but it still requires the algorithm to move elements to make room for the newly added element. The video doesn't count these swap operations, but they play a part in the overall performance.
      See discussion of this idea along with others here: en.wikipedia.org/wiki/Insertion_sort#Variants

    • @legendgames128
      @legendgames128 6 лет назад

      What about if your robots can see far and wide, unlike insertion sort or bubble

    • @legendgames128
      @legendgames128 6 лет назад

      We could perform radix

  • @raresideb
    @raresideb 4 года назад

    We NEED to collab on the next sorting video.