Getting Sorted & Big O Notation - Computerphile

Поділитися
Вставка
  • Опубліковано 20 лип 2024
  • How well sorted is your algorithm? Choosing the right method to sort numbers has a huge effect on how quickly a computer can process a task. Alex Pinkney talks about two popular sorting algorithms and how they 'scale up.'
    Follow up film "Quick Sort": • Quick Sort - Computerp...
    Alex's code that generated the data for the tests:
    github.com/apinkney97/Sorts
    Alex's graph of all the results:
    eprg.org/allplots.pdf
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computer Science at the University of Nottingham: bit.ly/nottscomputer
    Computerphile is a sister project to Brady Haran's Numberphile. See the full list of Brady's video projects at:periodicvideos.blogspot.co.uk/...

КОМЕНТАРІ • 542

  • @bumblinggimp
    @bumblinggimp 10 років тому +595

    "you'd have to be quite a good programmer to work out how to do something that runs that badly..."
    Fantastic quote!

  • @ShootMyMonkey
    @ShootMyMonkey 10 років тому +209

    An interesting consideration is the mechanism of storage. At one defense contractor I worked at, we had machines with no real RAM to speak of, and even transient data would be stored on tape media. Because of that, a ping-pong bubble sort was always the fastest method in practice because it dealt with adjacent elements (didn't have to deal with the seek times). Because of the linear seek times, it saved time by actually doing work as the tape wound one way or the other.

  • @tobywong2657
    @tobywong2657 8 років тому +240

    To this day,he is still random sorting...

  • @Computerphile
    @Computerphile  11 років тому +52

    Really glad you are liking it - there are PLENTY more to come!
    PS: Tell your mates about us!
    >Brady

  • @tapiok
    @tapiok 10 років тому +108

    Nice that you included bogo sort!

  • @jayvkman
    @jayvkman 4 роки тому +30

    Good video, but I'd like to challenge Alex's theory at 4:50 that smaller lists are "nearly sorted and therefore BubbleSort is faster" when he's using uniform random. The data rather suggests a tipping point between bubble and merge somewhere 20~40 elements, that's around when you'd run out of Level 1 CPU cache (64 bytes). That most likely explains why bubble sort is initially much faster, because doing 1000 swaps on 32 elements in L1 cache is less CPU work than a handful recursive method calls in the JVM each allocating 2 arrays and copying data.
    It should remind everyone that Big-O is just theory ignoring how computers really work. These days cache misses dominate performance, unlike in the 90's when multiplications were slow and memory was fast.
    I'd also like to point out that his approach to micro-benchmarking Java code is prone to incorrect data. For small input sizes he is running in interpreted mode (JIT requires 10k iterations) also you don't want to call `nanoTime()` in a tight loop, it's an expensive call and thus will dominate cost for smaller input sizes. Look into JMH next time you want to benchmark in Java.

  • @govindsharma9871
    @govindsharma9871 5 років тому +30

    It's astounding to see how common it is for these professors or engineers to always have a Rubik's cube on their desk.

  • @Computerphile
    @Computerphile  11 років тому +14

    Indeed it was not me... Most of the computerphile videos are made by Sean Riley (we always say who made the film in the full video description if you want to double check)
    I'll still be making a few myself and come along for the odd interview (just because I like being involved!) - but Sean is the main man and you can usually assume he is the an behind the camera/edit!
    >Brady

  • @diedie5
    @diedie5 11 років тому +8

    This video would have helped me a lot back when I was in simple algorithms. You should do more videos on algorithms. Maybe Quicksort, I always thought it was beautiful how well it worked.

  • @Tastiestbeaner
    @Tastiestbeaner 11 років тому +3

    Brady! This channel is really turning into something great. Being an IT guy, its really apparent how little people understand fundamental computer concepts that can really be a benefit in any vocation. I am really excited to see the networking video :D.

  • @Rpleech1
    @Rpleech1 11 років тому

    Please don't stop putting videos up on Computerphile!
    This is my favorite channel Brady!

  • @Skeluz
    @Skeluz 11 років тому +1

    I can't wait for more on sorting. I know it very well but it is very nice to hear someone explain it so well in just 10 minutes.

  • @Computerphile
    @Computerphile  11 років тому +16

    Thanks... Sean, unlike me, knows how to use After Effects...
    >Brady

  • @Computerphile
    @Computerphile  11 років тому +5

    Hi, we will put the links in the description when they are available - at the time of writing this, the two videos 'teased' at the end are not yet available and the annotation simply says 'coming soon' - hope that helps >Sean

  • @JPlatGaming
    @JPlatGaming 11 років тому +6

    So far I've liked all the Computerphile videos, but I think this is one of the better ones. I'm a 16 year old self taught programmer and I think this channel is a great way of introducing new people to computing. Great job Brady!

  • @MySchari
    @MySchari 11 років тому

    Thank you for making this video. This shows that the audience is really important to you guys.

  • @XenoxHawk
    @XenoxHawk 11 років тому

    Algorithm complexity is something I have wanted to learn about for a while, and this video has given me a basic look. Keep the good work up!

  • @MattSiegel
    @MattSiegel 11 років тому +17

    "He invented a tree sort that uses fewer logs."
    ~ cartoon in ancient Dr. Dobb's Journal

  • @ashwith
    @ashwith 11 років тому

    Amazing work with the animations! Makes merge sort so much easier to understand!

  • @smmoom1212
    @smmoom1212 8 років тому

    :D so so glad you posted the code. this got me back into some programming after a long hiatus for work! i managed to incorporate a simple pre-load system so you don't have to reprogram the app each time you want to change the range of your test XP simple enough but was still super fun :D

  • @lydianlights
    @lydianlights 11 років тому

    I really liked how long and in-depth this episode was. I noticed that most of the Computerphile episodes were pretty short.

  • @Vospi
    @Vospi 9 років тому +12

    wow, that last algorithm is so amazing :)

  • @Computerphile
    @Computerphile  11 років тому +1

    It will be covered soon! >Sean

  • @papalevies
    @papalevies 11 років тому

    Nicely explained video. Computing science concepts like Big O notation and sorting are really interesting.

  • @thresholdofdave
    @thresholdofdave 11 років тому

    That paper they write on takes me back to my primary school days. Nice touch. Well done

  • @WannabeTheAwesomest
    @WannabeTheAwesomest 11 років тому

    That is the most mindblowing computer-related thing I've heard in a long time.

  • @godwinikape8888
    @godwinikape8888 2 роки тому

    Thank you so much for this video. It really helped me understand the concepts of these algorithms.

  • @impussybull
    @impussybull 11 років тому +1

    Incredible! I feel like taking CS Algorithms again but with more fun since it is familiar :). Definitely support other people's suggestions on algorithms videos. Among those: more sorting (quick sort, selection sort, bucket sort and comparison etc.); O notations deserve a separate topic; P=NP (probably for later videos since it is more advanced); data structures: queues, trees, stacks; graphs and graph algorithms. Overall, great channel!

  • @Friedeggonheadchan
    @Friedeggonheadchan 11 років тому

    Excellent video! Please continue on this route here.

  • @DudokX
    @DudokX 11 років тому

    Best video on this channel so far! Great job!

  • @AbhishekSingh-dt6br
    @AbhishekSingh-dt6br 3 роки тому

    I appreciate the effort you are putting to explain this.

  • @gellarieb88
    @gellarieb88 11 років тому

    algorithms and data structures exam next friday. those sorting videos are pretty good for understanding. thanks, brady :)

  • @GuilhermeTeixeira
    @GuilhermeTeixeira 3 роки тому

    This channel is so precious

  • @alonsorobots
    @alonsorobots 5 років тому

    I wish the title included Big O notation! I was recently looking up more information on the subject and this was a much better explanation than the rest!! =)

  • @Garrison86
    @Garrison86 2 роки тому

    Wow! Great demonstration illustrating Big O notation

  • @CanOzmaden
    @CanOzmaden 11 років тому +1

    I would like to see more on programming languages, their history, pros and cons, basic abilities of each, thank you!

  • @JamWard
    @JamWard 11 років тому +1

    I'm loving these videos guys! Keep up the great work :D

  • @fredrs05
    @fredrs05 11 років тому

    I haven't been a huge fan of this channel Brady, even though I was really looking forward to it being launched. That being said, I really enjoyed this video! This is excatly the kind of stuff I would like to see!
    Thumbs up from me!

  • @MrAskolein
    @MrAskolein 11 років тому

    The best sorting algorithm is using recursivity. The video was excellent. Your channel is getting great

  • @ChitrankDixit
    @ChitrankDixit 9 років тому

    nice video and explanation for those who are new to Algorithm Analysis

  • @MrGeems
    @MrGeems 11 років тому

    Hey Computerphile, Really loving the videos on this new channel, especially this one! Would you be able to do a video on recursion and its applications in algorithms, and further, how to write algorithms using recursion. I would really like to know the thought process behind how to write good recursive programs. Thanks :)

  • @MasterHigure
    @MasterHigure 11 років тому

    Bubble sort is the simplest one to implement, and a good introduction to algorithms in general. Also, it serves as an excellent example of how different algorithms which at a first glance might both seem more or less efficient to untrained eyes actually perform very differently.

  • @Computerphile
    @Computerphile  11 років тому

    Quicksort will be covered soon! >Sean

  • @PixelOutlaw
    @PixelOutlaw 8 років тому +3

    I don't understand why merge sort is always given an initial recursive decomposition step. You can form the initial base lists by simply collecting the elements 2 at a time with the last pair as a single item should the number of elements be odd.

  • @Mike10131994
    @Mike10131994 11 років тому

    Quick sort does this:
    1) Choose a random pivot, the pivot is used to compare the numbers of the list
    2)Create 2 lists, "greater" and "less"
    3)Go through each number (except the pivot) in the list. If its greater than the pivot, add it to "greater". If it's less than or equal, add it to "lesser"
    4)Recursion! Basically, repeat 1-3 for each and every "greater", append the pivot, then append the "less" list after you apply steps 1-3. It's hard to explain, but relatively easy to code

  • @samuelbouffard1037
    @samuelbouffard1037 5 років тому

    Amazing the n! example with the cards!! Never though of it like this. I'm gonna go and look if you have a quick sort one now since you explain this so well =D

  • @gorgolyt
    @gorgolyt 11 років тому +1

    Rumour has it he is still there to this day.

  • @MusicByNumbersUK
    @MusicByNumbersUK 11 років тому

    Love this video and happy to see more stuff in this area :)

  • @definty
    @definty 11 років тому

    This is the best one so far! More videos like this!

  • @pupper775
    @pupper775 11 років тому

    This is the best video yet!

  • @orbital1337
    @orbital1337 11 років тому

    Just a few months ago we were doing sorting algorithms in my CS course and I was bored enough to implement 20 different sorting algorithms and benchmark them. Here's my top 8 algorithms for 1 mil elements: 1. Bit-adaptive radix sort (can do 200 mil numbers in 2 seconds on my PC) 2. Flashsort 3. Introsort 4. Mergesort 5. Quicksort 6. Shellsort (very simple to implement) 7. Heapsort 8. Smoothsort (look it up, it's really cool).

  • @ManojGudi
    @ManojGudi 11 років тому

    I never understood merge sort till today. Thanks!

  • @phyyl
    @phyyl 11 років тому

    we could compute the time to compute for each method, take the best one before sorting!! what an awesome sorting algorithm!

  • @AshWarriorAshes
    @AshWarriorAshes 6 років тому

    Thank you so much you're a life saver I was looking at the mark scheme for a question on this and I was so confused

  • @akowalz
    @akowalz 11 років тому

    Oh man, you did sorting without going through Quicksort! That's the most famous algorithm in computer science!!! Great video regardless, too bad this wasn't here last semester when I was taking Data Structures and Algorithms.

  • @iabervon
    @iabervon 11 років тому

    In fact, "Timsort", which is the built-in library sort in a bunch of languages, is a combination of merge sort and insertion sort (which is kind of a better-organized bubble sort, which does the same number of comparisons, but only O(n) swaps). It's particular worthwhile to have great performance for lists that are either already in order or nearly in order.

  • @digimbyte
    @digimbyte 11 років тому +24

    there's a russian ballet that actually demonstrates sorting algorithms

  • @xtieburn
    @xtieburn 11 років тому

    For those wanting a lovely visual way of seeing sorting algorithms the appropriately named sorting-algorithms site has them all for comparison. Its problem sizes cant get too large but its one of the best references for various cases I know of.

  • @Mike10131994
    @Mike10131994 11 років тому

    If he were to explain it with pictures like he did these, it would be incredibly easy to understand. Sure, the concept of a pivot and recursion might be slightly more difficult than these concepts, but that's why we're here!

  • @SeabasR
    @SeabasR 11 років тому

    Computerphile, I subscribed before this video finished loading.

  • @iabervon
    @iabervon 11 років тому +1

    I want to see radix sort, and a discussion of how you can beat the theoretical limits if you're willing to break the rules. (If you have a limited number of values, you can sort really fast by putting the cards in piles by number and never comparing them with each other.) A lot of the biggest improvements in CS come from solving the problem you actually have to solve, rather than the general case.

  • @amak1131
    @amak1131 11 років тому

    Ohhh a networking video! Now I'm really excited.

  • @MrWazzup987
    @MrWazzup987 11 років тому

    i'M new to programing so looking at the end code with knowledge of purpose and process is very helpful

  • @Artificial-Insanity
    @Artificial-Insanity 11 років тому

    Wow, this is exactly what I thought you should do next.

  • @awirstam
    @awirstam 8 років тому +54

    How does a computer "know" that 3 is a lower number than 4?

  • @johnchapman5646
    @johnchapman5646 11 років тому

    Can't wait for more sorting!

  • @Charlie2531games
    @Charlie2531games 11 років тому

    What about a 2^b^n sort? It checks what the range of values for the data type is, generates a list of random numbers equal to the size of the list, and checks if it both has the same values as the original list, and makes sure that it's sorted. It would probably be called the Coincidence Sort.

  • @alzger
    @alzger 11 років тому

    Great job man. This video was great!

  • @specthanatos
    @specthanatos 11 років тому

    Really really really really really interesting material!

  • @BuzLuck
    @BuzLuck 11 років тому

    Thank you for posting this, I needed to see that picture. :)

  • @DqwertyC
    @DqwertyC 11 років тому

    Love the animations. Very cool.

  • @SapphireCrook
    @SapphireCrook 11 років тому

    This was nice. Would've been nicer to have had this before my workshop about collections and sorting, but whatever.
    Shufle sorts are the best kind of sorts, because at least you had fun!

  • @Computerphile
    @Computerphile  11 років тому

    Thanks! >Sean

  • @terrahyde217
    @terrahyde217 8 років тому +1

    Sorting algorithms are tough to make O(n!), but there are algorithms for other tasks that are worse than O(n!) by a long shot. Things like O(n^n) have come up in my own mathematical research (case generation and resolution for a problem).

  • @MixedTacticsGamer
    @MixedTacticsGamer 11 років тому

    This was really interesting, I liked this over the stuff such as the "hair algorithm", although I think that you were laying down the base

  • @WarpRulez
    @WarpRulez 11 років тому +5

    Bubble sort is a zombie. It will never die, no matter how many times you try to kill it. It always comes back.
    At the end of the universe, when the heat death is almost complete, and there's almost nothing left in the entire universe... someone will be there teaching bubble sort. It will never, ever, ever die. Even though it's the most horrible sorting algorithm that anybody has ever devised.

  • @rageagainstthebath
    @rageagainstthebath 11 років тому

    Gnome sort, as far as I can recall, is about making one step back after the switch, and it seems to make more sense than starting from the beginning.

  • @alloria
    @alloria 11 років тому +1

    What a great channel! Brings me back to my university days.

  • @DFYX
    @DFYX 11 років тому

    Btw: thumbs up for including BogoSort. There's probably only one sorting algorithm that's even crazier: Intelligent Design Sort. It says something like "Look at your data. Some higher being has decided that this is the order you need. Therefore consider it sorted" Intelligent Design Sort uses O(1) time (constant time) in all cases.

  • @MalliMania
    @MalliMania 11 років тому

    Sorting Algorithms are a thing of beauty!

  • @meanbark1976
    @meanbark1976 11 років тому

    It would be awesome if someone come up with English subtitles for these videos (just like numberphile!). Because English is not my mother tongue and you all got funny accents. Thanks for the channel!!

  • @morswinPL
    @morswinPL 11 років тому

    prevoius video were very good but this is best one yet

  • @Niosus
    @Niosus 11 років тому

    Yes! Many databases use techniques very similar to what's used in heapsort. If you keep your heap structure you can search, add and remove log(n) (worst case) time. Well it's not exactly the same way, but it is extremely similar and uses the same idea behind it. As a sorting algorithm it loses out against mergesort in the real world, but the idea of using a tree structure get used all over the place.
    Look up red-black trees, they're quite ingenious ;)

  • @thecassman
    @thecassman 11 років тому

    Makes a huge huge difference in real programming. The software i am coding has an "industry standard" to meet which is to process 1 million records of 200 fields inside 15 minutes.
    15mins = 900 seconds to do 1 million, which is less than 1ms per record.
    Shaving fractions of ms off of processing times is incredibly important at times.

  • @bwashforeal
    @bwashforeal 10 років тому +1

    Anyone else having problems loading this video? It only seems to be this one. Not sure what is going on. Hopefully the issue is resolved soon since I'd really like to se it.

  • @manudude02
    @manudude02 9 років тому +2

    How come merge sort at n=4 takes 53 times longer than when n=5?

  • @TheKilledDeath
    @TheKilledDeath 11 років тому

    They were talking about this way of sorting in the end of the video (the throwing the cards in the air part). It's called bogosort

  • @SkyeWintrest
    @SkyeWintrest 11 років тому

    I call Radix sort above the sorting algorithms brought up in this video. It works for pretty much all numbers that a computer can use, and also would work for characters (since those can be cast as integers).
    Of course, it won't work when you can only use a method that compares two objects at once since it doesn't work in that way, but still.

  • @mcvoid1
    @mcvoid1 11 років тому

    It's good to see some actual computer science in computerphile. Also, quicksort rules merge sort drools!

  • @severynkozak9131
    @severynkozak9131 11 років тому

    Buublesort doesn't rely on a list's last element being the largest. Every time you parse the list (pass over every element), the largest element within the unsorted portion (the left) is moved into the sorted portion (the right). Thus, the series is sorted by ordering values in descending order of magnitude (backwards).

  • @IceMetalPunk
    @IceMetalPunk 11 років тому

    "n" is the number of items in the list. The overall efficiency is the function of "n" that tells you the total number of steps in the algorithm. For Bubble Sort, worst-case it has to swap every pair of items on every pass. Whenever it does, it needs to do another pass. So that's n passes and n swaps each--n^2. Merge sort splits the list in half each time, so the total number of splits is log-base-2 of n. Then it compares each element together for each pair, so that's n comparisons. So n x log n.

  • @AndreiMuntean0
    @AndreiMuntean0 11 років тому

    This was awesome! Do one on quick sort too! Also do one where you answer the question "How does Google return search results from billions and billions of websites almost instantly?"

  • @Uejji
    @Uejji 11 років тому

    Bubble sort will always be relevant, because it's easy to remember, easy to write and relatively quick on extremely small datasets, along with having extremely low overhead.

  • @antiHUMANDesigns
    @antiHUMANDesigns 11 років тому

    Thanks for the link, mate.

  • @AngusPearson
    @AngusPearson 11 років тому

    I was just about to comment about it being called bogo sort, but he got it in! I'm happy now.

  • @l0oky1
    @l0oky1 11 років тому

    Nice video, very educative. Could you post more algorithm explanation videos like this? Thank you

  • @gulllars
    @gulllars 11 років тому

    A bit later on after other videos, a video on the for loop and it's OO sibling foreach, and how it leads to spatial and temporal locality in memory, and how it can be unwound to be executed in parallel depending on branching with speculative execution could be interesting. There's easily 5 minutes there, and if you take your time to cover it in some depth with simple explanation you could get 15 minutes that would be interesting ;)

  • @helenwhogirl
    @helenwhogirl 11 років тому

    We looked at bubble sorting in the decision maths unit in A level Maths. The different sorting methods are quite interesting :-)

  • @ZackNagaich
    @ZackNagaich 11 років тому

    You are correct, it is generally implemented with recursion.

  • @Beer_Dad1975
    @Beer_Dad1975 11 років тому

    Exactly - it has to be a pretty specific reason. The systems I work on use them to generate formula based pricing, where once price can be based on another price, based on another price etc - the recursion moves down through the price hierarchy - it would have been very hard to achieve the same result without it. Sure can be confusing trying to work out pricing errors though.