Quick Sort super easy explanation with animations and example | Full implementation and code

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 17

  • @jarvoo69
    @jarvoo69 8 หลายเดือนก่อน +4

    I spend my money in the DSA course (lol).
    now i am getting better understand from nikhil bhaiya

  • @davidhh7416
    @davidhh7416 3 ปีที่แล้ว +3

    This is the exact great and clear step by step code explanation with array animation I was looking for!!! Can’t thank you enough!!!

    • @nikoo28
      @nikoo28  3 ปีที่แล้ว

      Great to hear! If you really want to help out share this video with anyone you feel it would be helpful to. This certainly motivates me to make more such videos.

  • @samwelino
    @samwelino 5 หลายเดือนก่อน

    Watched many videos on Quick Sort algorithm, and your video is the one of the best, thank you!

    • @nikoo28
      @nikoo28  5 หลายเดือนก่อน +1

      Glad it was helpful!

  • @Priyutube
    @Priyutube 5 หลายเดือนก่อน

    sir your videos are always very helpful for understanding the concept
    keep posting new video
    thank you so much sir

  • @sumitbabel5415
    @sumitbabel5415 3 ปีที่แล้ว +2

    Really explained in an exceptionally well manner, your effort and explanation is really respectable and commendable.God Bless dude

    • @nikoo28
      @nikoo28  3 ปีที่แล้ว

      You are most welcome

  • @nicholasswandrak3051
    @nicholasswandrak3051 ปีที่แล้ว

    This is the video that I needed. Explained it very well and helped me out so much. Thank you!!

    • @nikoo28
      @nikoo28  ปีที่แล้ว

      You are so welcome!

  • @rohandhobale2691
    @rohandhobale2691 3 หลายเดือนก่อน +1

    Good explanation

  • @matthewzarate8851
    @matthewzarate8851 6 หลายเดือนก่อน

    Amazing explanation Nikhil, thanks!

  • @something......something3844
    @something......something3844 2 ปีที่แล้ว

    Bro, this is the best explanation on quick sort bro. Thank you

    • @nikoo28
      @nikoo28  2 ปีที่แล้ว

      So delighted to hear that

  • @pranaym143
    @pranaym143 3 ปีที่แล้ว +1

    Thumbnail is dope

  • @irakeshdeka
    @irakeshdeka 2 ปีที่แล้ว

    Thanks Nikhil ❤️.

  • @shankar7435
    @shankar7435 3 หลายเดือนก่อน

    Swap (arr, i, j) should be done only when i != j.
    if(i != j) swap(arr, i, j); should save from some unnecessary swaps.
    I found an even more efficient approach. This does not make the current video any less in giving a better understanding of Quick sort.
    th-cam.com/video/h8eyY7dIiN4/w-d-xo.htmlsi=IdRX8luO5JbLaFuA
    Both together made me understand what the Quick Sort is all about.
    Thanks a lot for the video.