Insertion Sort Algorithm Made Simple [Sorting Algorithms]

Sdílet
Vložit
  • čas přidán 6. 09. 2024

Komentáře • 172

  • @lucianboboc7513
    @lucianboboc7513 Před 4 lety +62

    I have completed all 3 parts, the course is great, i highly recommend it.
    A dynamic programming and system design would be a great addition to the existing 3 parts.

    • @oracle_professor
      @oracle_professor Před rokem

      It seems to me, he made the simple insertion sort difficult to understand.

  • @IoniB
    @IoniB Před rokem +4

    This made little sense until I realised I was thinking about it wrong. It wasn't until I sat down on my ipad and tried to draw each step that I realised that firstly you are setting the current to the 2nd item in the list and J to just A NUMBER that is 1 less than the index. Then I realised that j-- was setting j to -1 and not 0. And once you do j + 1 = current this is the same as array[0] = current.
    So I basically understood it like that: first steps:
    array[1] = array[0]
    j = -1;
    arr[0] = current (array[1])
    I don't know if this makes sense to anyone else rn but if you are confused I suggest you just spend some time on it and draw it out at each step. I love Mosh though. He's the only one that actually encourages me to sit down and try something and this makes a huge difference. He breaks the developer's mindset of just watching tutorials forever and not actually practising it. In the last 2 days this is the second sort that he helped me truly understand and implement rather than think that I understand and then when I need to do it I don't actually get it. Awesome work!

  • @piyushborse3085
    @piyushborse3085 Před 3 lety +54

    Now I can say one thing to CS students... ODIN is with us ❤️

  • @_stack
    @_stack Před 4 lety +25

    You're an inspiration Mosh! so much so that we decided to create a coding channel ourselves. Of course, we are nowhere near your way of teaching, but we see you as an inspiration and a guide for succeeding!

  • @zivv1147
    @zivv1147 Před 7 měsíci +2

    The explanation was very good, the call to action to try it ourselves for 20 minutes is refreshing and wonderful, and when you demonstrated how you actually write the code - it was very informative and clear. Excellent video, thank you!

  • @mrbbayat
    @mrbbayat Před rokem +7

    Well explained, very similar to this book
    "Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein - Introduction to Algorithms - The MIT Press (2022)"

  • @MichaelAdadey
    @MichaelAdadey Před 2 měsíci +1

    Mosh has gotta be a really rich guy, because man this guy knows so much

  • @__nitinkumar__
    @__nitinkumar__ Před 2 lety +5

    This one is for all all my friends who love for loops.
    The Approach I took is of swap. Basically I think of it as a swap operation only and not as shift operation, as mentioned by Mosh.
    So swap until you find the correct spot for the current element in the sorted portion.
    Because of swapping the index of current gets changed, so keeping track of it, and decrementing it after every swap.
    private static void insertionSort(int[] arr) {
    for (int i = 1; i < arr.length; i++) {
    int curr = arr[i];
    int currIndex = i;
    for (int j = i - 1; j >= 0; j--) {
    if (curr < arr[j])
    swap(arr, j, currIndex--);
    // after swapping the index of curr changes so decrementing
    else
    break;
    // reduce iterations as elements before ith index are sorted
    }
    }
    }
    private static void swap(int[] arr, int j, int i) {
    int temp = arr[j];
    arr[j] = arr[i];
    arr[i] = temp;
    }

    • @DonARTello250
      @DonARTello250 Před 2 lety +1

      realize if you swap, you'll reduce the efficiency of the algorithm. In that case it wouldn't infact be an insertion sort because for insertion sort, you have to keep your key in a new variable and shift all the elements at once to create space for inserting. When you shift you simply overwrite on the current elements. Maybe we call your algorithm "Swap sort" but will be much slower especially for large arrays

    • @IoniB
      @IoniB Před rokem

      @@DonARTello250 Yeah was just about to say that

  • @masonbrown533
    @masonbrown533 Před 3 lety +2

    The elements are not sorted right after they are moved I thought. Not until the very end are they sorted. That’s what my teacher said and it seems right. Now I’m confused

  • @snehanangunoori7838
    @snehanangunoori7838 Před rokem +3

    Hi Mosh! Just wanted to say that I especially like how you gave us 20 minutes to attempt the implementation instead of us just directly copying your code. I followed your instructions and was able to implement it by myself! It really made my day (the little things in life)...thank you so much!! I truly enjoy learning from your videos...thanks again! :)

  • @ZBadri
    @ZBadri Před 4 lety +8

    I just want to say you:
    Thanks alot
    although its my weekness, l would say l actually like you be my teacher .
    If l lived in your city l have found you to be my private teacher.
    Despite some web s that you recommend are not responsible in my country ,l keep trying to learn .
    At least l could say you are so generous ,so l wish a happy life for you.

  • @JasmineWuRealEstate
    @JasmineWuRealEstate Před 4 lety +6

    Yesss! 👍👍 Why didn't I have this 2 years ago when I was struggling through data structures and algorithms? 😩

  • @MuhammadIshmaell
    @MuhammadIshmaell Před 2 lety +2

    Great explanation, but can any please explain why we're decrementing the value of j in the while loop?

  • @user-he4ef9br7z
    @user-he4ef9br7z Před 4 lety +2

    this is explained waaaaaaay better than it was to me in school today

  • @nikshepbangera5416
    @nikshepbangera5416 Před rokem +1

    This guy is amazing

  • @jaygarzon6709
    @jaygarzon6709 Před 3 lety +2

    What is the purpose of dicrementing the loop variable inside the while loop? Thank you and I hope you all are doing great

    • @jeffreyestayobasanes
      @jeffreyestayobasanes Před 3 lety +2

      Dicrementing the loop variable inside the while-loop simply terminates the loop. Since the while-loop only runs when two conditions are met ( 'j is greater than or equal to zero' and 'array[j] is greater than the current), if the loop variable j is dicremented, from having a value of 0 it will become -1 and the conditions for running the while-loop is not met, so the loop is terminated.

    • @jaygarzon6709
      @jaygarzon6709 Před 3 lety

      @@jeffreyestayobasanes Yeah thanks for replying bro. The purpose of dicrementing the j variable is not explain well in this video. I tried to watch other vids about insertion sort and it seems the purpose of dicrementing ng j variable is for comparing the current variable to the elements upto the leftmost variable via index (where array[0] == the first element in the array)
      The condition inside the while loop which is j >= 0 will terminate the loop.

    • @didactics740
      @didactics740 Před 3 lety

      @@jaygarzon6709 thanks bro, I too was looking for the same explanation

  • @sarahle770
    @sarahle770 Před 3 lety +5

    Beautiful explanation! I’ve been taking 3 parts java course and I loved it .
    Do you think you will be able of doing java + hibernate + spring boot ( based on my sql Database ? ) I’m gonna take that course for sure !
    Thanks in Advance

  • @bishowpandey8205
    @bishowpandey8205 Před 4 lety +2

    Hey mosh you are really a very good teacher. I love your videos. I had learned python by watching your videos. Thank you for all your videos. I have a small request, can you make videos on game development with python. It will be very helpful. Thank you!❤️❤️

  • @robloxprisoners6280
    @robloxprisoners6280 Před 4 lety +4

    Mosh please i want your django course cuz your explanation is easy and simple at the same time which motivates more to code even more.PLEASE.PLEASE

    • @sarahfuntanilla6542
      @sarahfuntanilla6542 Před 4 lety +1

      I will buy Django course from you Mosh, please create many advance topic too in Django like REST API and real world projects. Connecting Django to MySQL or PostgreSQL too.

  • @aneeshkatkam8271
    @aneeshkatkam8271 Před 4 lety +1

    mosh thank you thank you thank you for these courses

  • @abhishekshah11
    @abhishekshah11 Před 4 lety +6

    I need the intro music. It's so good

  • @mounirelardi1201
    @mounirelardi1201 Před 4 lety +1

    thanks mosh for your very useful tutorial! I'm super exited to learn more from you!!

  • @chirilcugureanu1853
    @chirilcugureanu1853 Před 4 lety +1

    I already took your Algorithms course in Java but implemented the algorithms in JavaScript! An amazing course! Really recommend it!

  • @ronit043
    @ronit043 Před 4 lety +2

    I have a question, in this algorithm, the second loop is a while loop why?

  • @erollejenfreemagulod3637

    nice!! thankyou !! my head hurts thinking about my projects in my sub but thanks fot this it really help

  • @sportlifetv3838
    @sportlifetv3838 Před 4 lety +1

    Sir we need an django tutorial on delete,insert,update,delete and search operation..our institute have given us a project to build a web application..
    I already shared your 6 hr python tutorial anoung student and that was great..django tutorial will be helpful for everyone who used to develop web application
    Thank you

    • @aqibishaq885
      @aqibishaq885 Před 4 lety

      @@programmingwithmosh i need spring boot tutorials why u ignoring my request

  • @CelestialCanvasTV
    @CelestialCanvasTV Před 3 lety +2

    Hey mosh , can u pls also make a video on bubble sort and insertion sort using *python*

    • @ATOZSTUDYWITHMYK
      @ATOZSTUDYWITHMYK Před 3 lety

      In python no algorithm steps are required just use the sort function directly

  • @sarahfuntanilla6542
    @sarahfuntanilla6542 Před 4 lety +2

    Hi Mosh, Thanks for the Great Video I hope you will add some training in your Java too like Unit Testing using JUnit and Mockito, Java Secure Programming (This course is very important and only few tutorials on Web some are very expensive to enroll), Spring Framework and a Full Stack Developer which can give knowledge and experience to have good Job in Java World. Have a happy and Long life to you Mosh!!!.

  • @umarsiddique511
    @umarsiddique511 Před 4 lety +26

    hey Mosh thank u for that . but we still waiting for u r upcoming django course .

    • @KodiLearn
      @KodiLearn Před 4 lety +6

      @Ahmad Ebrahim It will be best if he put django + react but it will be enough if he put only django course also.

    • @hamzaanis2321
      @hamzaanis2321 Před 4 lety +1

      Umar is he made django course?

    • @KodiLearn
      @KodiLearn Před 4 lety +1

      @@hamzaanis2321 Mosh told me that he is going to create Django course.

    • @hamzaanis2321
      @hamzaanis2321 Před 4 lety +1

      @@KodiLearn Oh ok man

  • @Saw-o3h
    @Saw-o3h Před 4 lety +1

    Hi Mosh
    all your tutorials are good, so could you please make a Linux tutorial for beginner to advance?

  • @diwakardayal954
    @diwakardayal954 Před 2 lety

    thank you
    animation is so clean

  • @grzegorzszymanik4154
    @grzegorzszymanik4154 Před 4 lety +3

    hey Mosh. Did you remove all of your courses from Skillshare? I was going through your mySql course but I can't finish it :(

  • @saadkhan7891
    @saadkhan7891 Před 2 lety

    Sir, I'm your student from Pakistan
    I love your videos so much
    sir the reason for my texting you is a request that can you please upload tutorial about web scraping with python
    i watch many videos on youtube but your method of teaching was too good i really loved it
    can you please do that for your students

  • @sherazarain871
    @sherazarain871 Před 4 lety +1

    Hey, mosh! Which language you are using in Data structure?

  • @lilit3552
    @lilit3552 Před 2 lety

    Finally understood😊
    Thank you soo much!

  • @AlejandroNavarroD
    @AlejandroNavarroD Před 4 lety +1

    After finish Redux course I going to start with Data structure course! Thanks you Mosh and keep going teaching us new things :)

  • @herevancelightena9770
    @herevancelightena9770 Před 3 lety +1

    Have you released video about bubble sort?

  • @AhamedKabeer-wn1jb
    @AhamedKabeer-wn1jb Před 3 lety

    WELL EXPLAINED .. THANK YOU..

  • @shdotcomdata8213
    @shdotcomdata8213 Před 3 lety +1

    May I know which software you are using to create these tutorials?

    • @Jonny-op3wr
      @Jonny-op3wr Před 3 lety

      He's using the IDE called Intellij

  • @shivendrachand1679
    @shivendrachand1679 Před 4 lety +1

    Are the rest of the videos based on Algorithms still available on mosh's channel

  • @redtree732
    @redtree732 Před 10 měsíci

    Great tutorial!

  • @ayushsatecsh9930
    @ayushsatecsh9930 Před 4 lety +1

    Which screen recorder do you use?

  • @ohmegatech666
    @ohmegatech666 Před rokem

    Thanks a ton for these videos. I dislike having an index that is inherently -1 like you've done with j as it is conceptually obtuse even if it makes the code slightly cleaner. I would prefer to just use a normal index for the while loop and then use (index-1) when you need to access the previous item. Also I think it can be confusing to use the letter j specifically for something like this as j is almost always used to represent an inner nested loop index which isn't really what we're doing here

  • @mahadevhatti5228
    @mahadevhatti5228 Před 4 lety

    amazing explaination baldy!!!

  • @maharshpatel9243
    @maharshpatel9243 Před 2 lety

    Loved this video! very simple to understand and follow along! Thank you so much Mosh

  • @rockincy
    @rockincy Před 2 lety

    This is called the art of teaching.

  • @sahandsanaei3086
    @sahandsanaei3086 Před 4 měsíci

    great as always

  • @miguelcaceres6763
    @miguelcaceres6763 Před 3 lety

    thanks mosh

  • @sujitprabhakaran9886
    @sujitprabhakaran9886 Před 6 měsíci

    Where do I find Selection Sort by Mosh?

  • @elizarbucal348
    @elizarbucal348 Před rokem

    Thank you !

  • @u_u7094
    @u_u7094 Před 4 lety +1

    Love your videos.

  • @thanossym2281
    @thanossym2281 Před 3 lety

    Thank you for your video! great Job! :)

  • @Followme841
    @Followme841 Před 4 lety

    Mosh do you think your react course will be fine until 2021 or they will come new future to the react app

  • @dharshinisekar7036
    @dharshinisekar7036 Před 2 lety

    Thank you

  • @armanahmed4806
    @armanahmed4806 Před 4 lety

    As always wonderful video sir plz make one video on Django

  • @DamnBoii123
    @DamnBoii123 Před 4 lety +1

    Site Google pay is not working at the checkout

  • @reviewsbyraf
    @reviewsbyraf Před 3 lety

    i am much beginner to understand such questions can some1 ttell
    Given the following array passed to insertion sort algorithm below:
    A[] = {33, 45, 50, 32, 17, 67}; // Array is beginning with zero index
    INSERTION-SORT(A)
    Set j=3
    key = A[j]
    i = j - 1
    while i >= 0 and A[i] > key
    A[i+1] = A[i]
    i = i - 1
    [End While Loop]
    A[i+1] = key
    END
    What will be the new array A after the above code runs.

    • @reviewsbyraf
      @reviewsbyraf Před 3 lety

      and this
      Given the following array passed to insertion sort algorithm below:
      A[] = {33, 45, 50, 32, 17, 67}; // Array is beginning with zero index
      INSERTION-SORT(A)
      Set j=3
      key = A[j]
      i = j - 1
      while i >= 0 and A[i] > key
      A[i+1] = A[i]
      i = i - 1
      [End While Loop]
      A[i+1] = key
      END
      What will be the next index of key?

  • @aryamanarora2765
    @aryamanarora2765 Před rokem

    what does o in the time coplexity calculation represent. if I had a list of 6 items and wanted to see the best and worst case times to sort these items how would I calculate how long this takes.

  • @vikillakkavatri4070
    @vikillakkavatri4070 Před 4 lety

    Hey mosh you teach all js course for algorithm you choose java Y? We need it in js

  • @DhhyeyDesai
    @DhhyeyDesai Před 4 lety +1

    Hey! Nice video mate :)

  • @Kindle_3
    @Kindle_3 Před 4 lety +1

    Hi loved your python course

  • @arfzbk
    @arfzbk Před 3 lety

    Simple is the best!

  • @jinglejam1
    @jinglejam1 Před 4 lety

    hi mosh thank you i have a question do you have a hdml course i would love to learn that after python

  • @MixInfo4554
    @MixInfo4554 Před 2 lety

    very helpful.

  • @Pink_Rose634
    @Pink_Rose634 Před 4 lety

    awli bod moshveq jan movafaq bashi : )

  • @harifhadi8620
    @harifhadi8620 Před 4 lety

    Mosh can u pls make a video about Java frameworks and how to use them well

  • @itknowledgehub7963
    @itknowledgehub7963 Před 4 lety +2

    Dear sir make a lecture about python an data science.
    I really like your explanation method.
    Sir please

  • @yogendramaarisetty
    @yogendramaarisetty Před 3 lety

    What do you use for animation

  • @gamingmonkeyyt8583
    @gamingmonkeyyt8583 Před 3 lety

    Why do we decrementing j?

  • @debakroy1842
    @debakroy1842 Před 2 lety

    Beautiful.

  • @animeshrastogi8315
    @animeshrastogi8315 Před 2 lety +1

    Won't it be O(n^2) for the worst case?

  • @katdareshruti
    @katdareshruti Před 3 lety

    How is shifting and inserting different from swap?

  • @rosellemantile9537
    @rosellemantile9537 Před 3 lety

    Is this can run using mobile phone in the app of MOBILE C?

  • @tejasukalkar2199
    @tejasukalkar2199 Před 2 lety

    sir what if one or all of numbers are negative? then code may fail, so how do we tackle that?

  • @rideforworld
    @rideforworld Před 4 lety

    Hey mosh Can I use it in JavaScript?

  • @oreoluwaadeyegbe4670
    @oreoluwaadeyegbe4670 Před 2 lety

    Any help on how to use mutex and channels on a sorting algorithm in go language

  • @mithungowdabn324
    @mithungowdabn324 Před 4 lety

    Hi can you please make a vedio of how to use a macbook Pro, complete ( A-Z ) guide , this would help me a lot please

  • @staffordnelson9053
    @staffordnelson9053 Před 4 lety

    Thanx!

  • @siasquad7360
    @siasquad7360 Před 4 lety

    Big fan sir you are my idol

  • @vuthysharing6618
    @vuthysharing6618 Před 4 lety

    absolutely

  • @ruhunumaya6111
    @ruhunumaya6111 Před 2 lety +1

    Wow good vidio

  • @Natasha-to1mh
    @Natasha-to1mh Před 4 lety

    Please create a graphql course :)

  • @QattanM
    @QattanM Před 3 lety

    Wonderful

  • @oduboteabayomi1237
    @oduboteabayomi1237 Před 4 lety +1

    Hey Mosh! I really do love your CZcams videos and hope to explore some courses on your website , but I’m having difficulty in creating an account (the captcha appears to be half).
    Would be glad if this issue is resolved.

  • @ilyasjaghoori415
    @ilyasjaghoori415 Před 2 lety

    How to do with generic data types?

  • @ericmiyan3466
    @ericmiyan3466 Před 2 lety

    is this eclipse?

  • @roadsidevlogs7855
    @roadsidevlogs7855 Před 4 lety

    Wanna buy the react native course but its too expensive

  • @rianzamanx
    @rianzamanx Před 4 lety

    Please open a discord server for Python and other programming purpose. :)

  • @Niv888
    @Niv888 Před 3 lety

    why i can't use keyword "var"? and how make var not be error?

  • @oladosutayo3576
    @oladosutayo3576 Před 4 lety

    And a full course on algorithm and data structure.. It's way more simple to learn from Mosh

  • @rohitmadhav3672
    @rohitmadhav3672 Před 4 lety

    Hi mosh, this is rohit from India. I ve been following and practicing ur python tutorial very attentively.
    Im an economically backward student to purchase ur course in dollars or somewhere around to the higher prices when converted my rupees into ur currency & where I cant afford it.
    Can u pls help me through some easiest way to gain ur valuable certification of Python (Community) through online, so that I can add it in my resume and can appear for interviews which can give me a great potential to get selected.
    Sincerely,
    Hoping for the best assistance from u
    thank you.

  • @mounirkanane8083
    @mounirkanane8083 Před 3 lety

    Can someone help me understand why we are decrementing j?

  • @yogendramaarisetty
    @yogendramaarisetty Před 3 lety

    What's the music?

  • @c_29_atharvakulkarni45

    inshah allah boys played well

  • @marcossemedo4805
    @marcossemedo4805 Před rokem

    I dont get it, why do we decrement j after?

    • @araeneangela
      @araeneangela Před rokem

      You're moving from right to left, in the case of the 'sorted' list, so you start with the number on the far right, shift right if its larger, then move to the number directly on the left (j--), do the same comparison.

  • @Jayantch.999
    @Jayantch.999 Před 4 lety

    Superrrr👍

  • @shreyasrai1339
    @shreyasrai1339 Před 4 lety

    I just wanna thank you for python tutorial you are a great teacher Also please put a course on data structures

  • @Atomiqal
    @Atomiqal Před 4 lety

    Quick question, why do we have to decrement j after shifting the greater value to the right? Can't we just use the same j index to store the current into the array without decrementing it?

  • @iankoech4967
    @iankoech4967 Před 3 lety

    Could someone please help me in understanding why arr[j+1] = current

  • @sahilaujla8182
    @sahilaujla8182 Před 4 lety +1

    Hey Mosh, I think I like you more than I like any youtuber. I am your big fan.Tell me if i can do anything for you. It would be my pleasure ❤️❤️🤗