Analyzing algorithms in 6 minutes - Intro

Поделиться
HTML-код
  • Опубликовано: 7 сен 2024
  • Introduction to analyzing algorithms.
    Asymptotic notation video: • Analyzing algorithms i...
    Code: github.com/msa...
    Source: Introduction To Algorithms, Third Edition (CLRS) [www.amazon.com...]
    LinkedIn: / michael-sambol

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

  • @erikawwad7653
    @erikawwad7653 8 месяцев назад +8

    Hey, your videos helped me through DSA at the university of michigan. I have since graduated (last april) and I am just beginning a new job as a SWE working with distributed systems. appreciate everything.

    • @MichaelSambol
      @MichaelSambol  8 месяцев назад +2

      You're welcome man. Thank you for watching. Good luck with your new job!

    • @dresk2380
      @dresk2380 8 месяцев назад

      Pretty much same here - thanks Michael, I still come back to a few of your videos every once in a while for a reminder on something because I think you're the most clear instructor I've ever seen on most of these topics

  • @littlelilly7480
    @littlelilly7480 2 месяца назад

    These videos are gem, I was searching for big theta noations but unfortunately i couldnt find it:(.
    THANKYOU broo u saving lives

  • @carl4416
    @carl4416 7 месяцев назад

    good timing! Just started DS&A and was looking for an amazing YT teacher. Hope you're well!

  • @D3ebK
    @D3ebK 8 месяцев назад +6

    The GOAT is back

  • @probinertasks6087
    @probinertasks6087 8 месяцев назад +1

    Happy 2024. Always appreciate your content.

  • @mahermagdy4604
    @mahermagdy4604 Месяц назад

    Great video keep it up

  • @DustinWatson01
    @DustinWatson01 8 месяцев назад +1

    Keep it up. Good videos.

  • @AccerAspire
    @AccerAspire 8 месяцев назад +2

    thanks

  • @parhamsadeghi6197
    @parhamsadeghi6197 8 месяцев назад +1

    Yay, you're back😎

  • @swoorp
    @swoorp 8 месяцев назад

    Welcome back!

  • @rain_yy
    @rain_yy 4 месяца назад

    how do u get those calculations in the 'times' or formulas? still understanding...

  • @Var_
    @Var_ 7 месяцев назад +1

    Seems like your insertion sort is broken. Why does it start at index 2 instead of index 1? And even fixing this, it never seems to be able to properly place the lowest number into index 0 (there is no moment where A[0] could be assigning something). Maybe you're assuming the first 2 elements are sorted for simplicity?
    Otherwise thanks for the video.

    • @MichaelSambol
      @MichaelSambol  7 месяцев назад

      I wrote the code to mirror the pseudocode in CLRS. Please see the comments in my GitHub repo: github.com/msambol/dsa/blob/master/analyzing_algorithms/intro.py