bro this makes so much sense now, man didn't even need any sound to explain it more efficiently than everyone else on the platform
@iamundeadtaters25788 ай бұрын
AFter spending an hour looking for some sort of explaination, this video does it the best, thank you soo much!
@reyou77 жыл бұрын
best shell short explanation ever!
@ob83465 жыл бұрын
Wow, I'm surprised this algorithm is so effective. Great explanation!
@joshiated8597 Жыл бұрын
Jesus saves.
@liquidofficialgm3 жыл бұрын
This is most easy explanation about shell short
@TheLegend-yb4ok7 ай бұрын
there is a little mistake which can be confusing, around 0:56-1:00 just after algorithm swaps 111 and 61, it needs to check 24 and 61 before moving on, you left that out of the video, it was confusing for me while watching it and reading the code of shell sort
@shubhamdubey7718Ай бұрын
I was about to comment on the same thing.
@prashantjadaun69526 жыл бұрын
best ever explanation of any sort love it.....................
@student4373 Жыл бұрын
Great video, the only missing comparison is at 0:56, comparing 24 to 61. Otherwise, great video.
@akseli70299 ай бұрын
yeah this confused me
@muhammadamjad86498 жыл бұрын
briefly and well explained
@jennyjenjira45723 жыл бұрын
okay now I understand
@minhkhangnguyen47122 жыл бұрын
great video ! But I'm curious at 0:56 after switching 61 and 111 why didn't we compare 61 again with 24 because I think that it's supposed to compare again after the switch ?
@aicy51702 жыл бұрын
yea
@catbreadcrab95302 жыл бұрын
we can all agree this was suppose to happen right cool
@AMAN-hp7oq Жыл бұрын
I think its because of the number of values that are found before 61 (after the switch), the algorithm is still comparing after 6 index's (k = 6), so there isn't 6 index's before 61 so it goes forward not like k = 3 or k = 1
@Countermeasure94110 жыл бұрын
Thank you very much for this video! It was informative for me.
@kiche_allan2 жыл бұрын
Best explanation
@II_Emilia_IIАй бұрын
well said
@devn0n2 жыл бұрын
Thanks soo soo much for this
@ChitrankDixit8 жыл бұрын
very nicely explained thumbs up for this :)
@Rajat-Sharma15 жыл бұрын
THANK YOU SO MUCH.
@abhishekkatiyar76668 жыл бұрын
Great Work
@facundomoran85953 жыл бұрын
Thanks!
@meenakshil11266 жыл бұрын
The numbers are not visible it can be little bigger
@vithushanjegatheeswaran53178 жыл бұрын
thanks bro
@harsh95582 жыл бұрын
Thx a lot!!!
@lovestatussongssatyageetje79286 жыл бұрын
Excellent trick
@EternityUnknown Жыл бұрын
Time Complexity: O(3 Minutes)
@dilln21583 жыл бұрын
amazing
@violinsheetmusicblog7 жыл бұрын
perfect! thanks!
@riteshpatidar91846 жыл бұрын
Awesome
@PrinceRachitSinha10 жыл бұрын
thank you
@reyxarnoco727910 жыл бұрын
thanks man
@ShaunSpamLol10 жыл бұрын
This is good but your inner loop seems to be more like bubble than insertion sort, which I think is standard/faster.
@EliasFofanov-aka-EngineerSpock6 жыл бұрын
The inner loop works as Insertion Sort, not Bubble Sort. Bubble Sort starts the inner loop from the beginning of the array. In this case, it does not. It is quite easy to confuse these two sort algorithms since they are quite similar.
@uflgeer2 жыл бұрын
@@EliasFofanov-aka-EngineerSpock спасибо за Ваш курс🙏!
@ragavakrishnanns68822 жыл бұрын
ebic
@rasikadhande7056 жыл бұрын
Nice explaination
@Abhi-kw7tp3 жыл бұрын
Please upload more videos
@YulesYes8 жыл бұрын
this was so cute! I hate shell sort but I love this video!
@dmumladze5 жыл бұрын
Would you please care to explain why do you hate it?
@sureshsingh9880 Жыл бұрын
🎉🎉🎉🎉❤❤❤
@ei.o22686 жыл бұрын
شكرا
@nopecharon Жыл бұрын
Damn
@Matyanson4 жыл бұрын
What, isnt this the same as a comb sort then??
@SuperfieldCrUn4 жыл бұрын
Comb sort simply keeps iterating with smaller and smaller gaps. Shell sort, when it gets to an inversion, will start working backwards (so that the low value of the inversion is on the right side of the gap) so long as there's room, then resume the normal iterations once it no longer detects an inversion while going backwards.
@devn0n2 жыл бұрын
@@SuperfieldCrUn Thanks a lot man, I was confused as to why @1:10 the indexes of comparison began to go backward instead of forward, so basically, without this "back-tracking", it's just a comb-sort
@joelsuaznabar52045 жыл бұрын
GRACIAS LA EXPLICACION MAS DIRECTA MEAYUDO MUCHO
@MrGyaancho7 жыл бұрын
ek no.
@nemomemo91128 жыл бұрын
Nice one
@bao82123 жыл бұрын
It looks like insertion sort
@muhammad1chsan3 жыл бұрын
what is k mean?
@armandmugabo11707 жыл бұрын
is that shell short with bubble sorting of the sub array instead of insertion sort ?
@EliasFofanov-aka-EngineerSpock6 жыл бұрын
The inner loop works as Insertion Sort, not Bubble Sort. Bubble Sort starts the inner loop from the beginning of the array. In this case, it does not. It is quite easy to confuse these two sort algorithms since they are quite similar.