Learn Merge Sort in 13 minutes 🔪

  Рет қаралды 360,875

Bro Code

Bro Code

Күн бұрын

Пікірлер: 289
@BroCodez
@BroCodez 3 жыл бұрын
This video took me THREE WEEKS to produce! Ya'll better smash that like button for me! lol public class Main{ public static void main(String args[]) { // merge sort = recursively divide array in 2, sort, re-combine // run-time complexity = O(n Log n) // space complexity = O(n) int[] array = {8, 2, 5, 3, 4, 7, 6, 1}; mergeSort(array); for(int i = 0; i < array.length; i++){ System.out.print(array[i]+ " "); } } private static void mergeSort(int[] array) { int length = array.length; if (length
@syllight9053
@syllight9053 3 жыл бұрын
Don't worry bro, I smashed the like button, plus I contacted the president to set a direct nuclear launch to the like and subscribe button as well!
@BroCodez
@BroCodez 3 жыл бұрын
@@syllight9053 Thank you Syllight!
@immortalbotyt1428
@immortalbotyt1428 3 жыл бұрын
I already did my big bro :D If we both belonged to only 1 family u would be my bigger bro :D
@aditya_asundi
@aditya_asundi 3 жыл бұрын
3 weeks making this *AND THERE'S A DISLIKE????*
@roysaka4475
@roysaka4475 3 жыл бұрын
Hi bro plsae reques Tutorial Python AndroidHelper. Music, recorder, voice mix, microfon. Call phone, game, calculator, google voice recorder, and others.. 🙏🙏🙏🙏🙏🙏 Plsee
@mayawhocodes3092
@mayawhocodes3092 2 жыл бұрын
The way you broke this down into simple terms with visuals and everything, amazing. I'm not a bro, but I do code. And this was lit. Thank you.
@sancho608
@sancho608 Жыл бұрын
No. You are a bro now!!
@fsxanas90
@fsxanas90 7 ай бұрын
why the karen vibe tho lmao
@johndavis29209
@johndavis29209 6 ай бұрын
@@fsxanas90 Why anything
@BigSmoke-r9w
@BigSmoke-r9w 5 ай бұрын
You are a bro! 👊
@sabdullahtu-techandunboxin8131
@sabdullahtu-techandunboxin8131 4 ай бұрын
Fr
@coltonbailey8873
@coltonbailey8873 3 жыл бұрын
You are single-handedly teaching me programming/computer science. Thank you. Never change your teaching structure, because this method works really well.
@jorgemedina8497
@jorgemedina8497 6 ай бұрын
This is the best video I found on all youtube which explains Merge Sort properly. This video is the definition of Quality Content.
@DopemonRoA
@DopemonRoA 2 жыл бұрын
I knew when I saw "Bro Code" it would be a beautifully simple video. What you did that the other videos I watched failed to do was walk through the sort / merge in the order that it would actually happen. The other videos were doing it by rows and not the actual order that it happens in. Thank you ! That is what made it click for me. I am now subscribed !
@raywei1701
@raywei1701 Жыл бұрын
So clear. my professor did not have enough time to go over this in class. Now I understand everything about merge sort.
@GamerOverThere
@GamerOverThere Жыл бұрын
Bro, you are a legend. My professor went over merge sort for 1 1/2, and I was left confused. I watched a Harvard lecture video on it, still confused. Asked chatGPT about individual components (not to cheat but to have it explain each step to me, I want to understand this) and it was spewing nonsense. But your video made it finally click. Thanks bro! Liked and subscribed
@2NormalHuman
@2NormalHuman 27 күн бұрын
best most comprehensive explanation of Merge Sort. You know the content is going to be golden when you see a meme in the channel name
@kingipra
@kingipra 2 жыл бұрын
Best explanation I've seen so far. The rundown at the beginning really helps. Thank you
@alirezabayat4337
@alirezabayat4337 2 ай бұрын
I wrote this code first time non-recursively, it was a DISASTER, but this is super easy! Thank you!
@aadv1k
@aadv1k 10 ай бұрын
Thank you for the beautifully elegant explanation that didn't require the viewer to have a PhD. You are one talented bro. Keep it up!
@zyad6385
@zyad6385 Жыл бұрын
After 2 years this is still very useful i understand everything now . even though i don't know how to use java i've just learned c++ but everything is clear now
@Bromon655
@Bromon655 9 ай бұрын
Recursive algorithms are the bane of my existence.
@danielebbersmeyer5087
@danielebbersmeyer5087 9 ай бұрын
Probably the best video i've seen so far to explain Mergesort, i think i finally got it!
@Nootey33
@Nootey33 4 ай бұрын
I'm on a journey of learning DSA ... I've got to say, you explain things very well! Glad I've stumbled on your channel.
@docjp7427
@docjp7427 Жыл бұрын
You are the best Bro I never had. 2 years have gone by, but this is still amazing.
@quantjet7718
@quantjet7718 11 ай бұрын
Wow you are one of the best KZbinrs to explain algorithms
@nyasha_keith_matevengwe
@nyasha_keith_matevengwe 2 жыл бұрын
You are a great tutor sir, I appreciate, I was failing to understand this all along, but just because of your video, I feel confident enough
@tsfgh9568
@tsfgh9568 2 ай бұрын
We’re passing Oneil’s class with this one 🗣️🗣️🔥
@nyankiku5863
@nyankiku5863 2 жыл бұрын
You made mergeSort look so simple and easy, thank you so much!
@valioprea9796
@valioprea9796 2 жыл бұрын
First of all I just wanted to let you know that thanks to your java section I landed a job as a java developer. So ...from the bottom of my heart, thank you, keep up the good work! On the other hand, a question for this video: what if the array has an odd length ?
@paulodasilvasa9884
@paulodasilvasa9884 Жыл бұрын
Thank you man!!! Finally I have found the best explanation of merge sort! You really helped us a lot. I've alredy smashed the like button, you deserve it bro!!!
@murnoth
@murnoth 2 жыл бұрын
Trying to make these algorithms with blueprint nodes in UE5, and following along with your code is also helping me translate code jargon into blueprint equivalents. Thank you for sharing
@LizyAd
@LizyAd 2 ай бұрын
Don't ever stop doing what you're doing. You're the GOAT
@lingjosh6801
@lingjosh6801 3 жыл бұрын
Clearly explanation and demonstration with merge sort, great work!!! Can,t wait for more CS videos.
@nurulafsar3195
@nurulafsar3195 Жыл бұрын
Best explanation of merge sort so far!
@alperenunuvar
@alperenunuvar 2 ай бұрын
this video is one of the best one that I've ever watched
@StrangerHaha76
@StrangerHaha76 3 ай бұрын
Thank you so much bro. My lecturer in campus and his slides are so confusing and it makes me think merge sort is difficult as hell. However your video explained it's so simple so i can understand it better and it's not that hard
@eniax
@eniax Жыл бұрын
Best merge sort tutorial I've seen, thank you
@smokinginthefishroom
@smokinginthefishroom Жыл бұрын
The best merge sort explanation on KZbin. Watched like 5 other videos but only this explained how the merge part of merge sort actually works! Liked and subscribed.
@NH-ij8dz
@NH-ij8dz 9 ай бұрын
Great video. I needed to implement this in C for a CS class and this video explained it in much clearer and easier to follow way than the so called experts who are being paid 6 figures a year to teach this to me. Ty bro.
@hannibalbianchi1466
@hannibalbianchi1466 3 жыл бұрын
No words can explain my appreciation Thank you, sir 🏆🏆🏆🏆
@arturofuentes2230
@arturofuentes2230 8 ай бұрын
Great video man, I understood everything so quickly, thank you so much and keep coding bro
@BrunoHenrique-oe5hb
@BrunoHenrique-oe5hb 5 ай бұрын
Bro, youre helping me through college. I appreciate it
@tipster360
@tipster360 Жыл бұрын
The best merge sort explanation! Thank you so much.
@Crystal-gs4gu
@Crystal-gs4gu Жыл бұрын
Thank you for saving me from my final test. You are the best teacher
@sanskarsongara2592
@sanskarsongara2592 3 жыл бұрын
Idk you sounds more confident in recent new videos, keep going homie you still gotta reach more people👍
@daviduntalan
@daviduntalan 3 ай бұрын
this helps me understand how the algorithm works, thank you bro for this detailed explanation. ^_^
@nicholasgates9391
@nicholasgates9391 2 ай бұрын
Ive never learned a concept so fast, thank you so much!
@РашидМирзе
@РашидМирзе Жыл бұрын
Good job! It is really easy to understand the algorithm with this video, thank you
@esmailalmoshki
@esmailalmoshki Жыл бұрын
شغل جامد يسطى
@charalamposkatsoukis8694
@charalamposkatsoukis8694 Жыл бұрын
top content as always. No one more understandable than Bro! (I hope you doin good on your break!!!)
@radicalsaled5756
@radicalsaled5756 Жыл бұрын
nice job, simple explanation of a long algorithm
@bhumikajoshi6966
@bhumikajoshi6966 3 жыл бұрын
it'd be really helpful if you continue this playlist!!! thanks in advance
@JazzInATinCan
@JazzInATinCan Жыл бұрын
Good video, not too long, not too short. Great job.
@rizzbod
@rizzbod 2 жыл бұрын
Thanks man! , because of you , i can skip the tough work of learning, hehe, and straight jump into implementing algorithms
@DruzeJosipTito
@DruzeJosipTito Жыл бұрын
You just made my computer science assignment a whole lot easier lol. Thank you.
@juanivillanueva7873
@juanivillanueva7873 Жыл бұрын
You are a better teacher than my dsa ones!
@ianvensonbolanio3327
@ianvensonbolanio3327 Жыл бұрын
Thankyouuuuusomuch, your video really helps our group "MEMANG".
@aorusaki
@aorusaki Жыл бұрын
Needed this for my interview :))) thank you!
@toxiclucien8168
@toxiclucien8168 2 жыл бұрын
very helpful video...watching all your sorting videos and learning from it...thanks BRO
@wmd5645
@wmd5645 2 жыл бұрын
nice. very nice. If you didnt work as a sw engineer, my professors were really as bad as i knew they were. good job.
@sanjusaju4049
@sanjusaju4049 Жыл бұрын
The best video ever .....love u man....
@doogiehowser1124
@doogiehowser1124 Жыл бұрын
Wow! this is a good tutorial. Thank you very much for taking the time to put it together! Well Done!
@hoanganhnguyen3438
@hoanganhnguyen3438 9 ай бұрын
omg, I love the music. Good stuffs brah =)))))))))))))
@kennysoyoye493
@kennysoyoye493 5 ай бұрын
this really helped me understand merge sort. thanksss a lot
@vansh9857
@vansh9857 2 жыл бұрын
You earned a sub! Awesome explanation
@09FT9
@09FT9 2 жыл бұрын
If you ever publish a book, I'd be the first one to buy it. Excellent work, Bro. 🙏
@Yuschova
@Yuschova Жыл бұрын
this 13 mins vid is way better than 5hrs+ lectures xD
@MrWardo2009
@MrWardo2009 Жыл бұрын
Thank you so much for making this video!
@mohtasimbillah6560
@mohtasimbillah6560 2 жыл бұрын
Really good explanation of merge sort! It helped heaps!
@cadmium4113
@cadmium4113 3 жыл бұрын
Started your Java playlist love your tricks to teach... Appreciate from another fellow BRO.
@Marzex1x
@Marzex1x 3 ай бұрын
how i actually understood everything just from the visualisation in the beggining wrote the whole program by myself and then watched the rest of the video and my logic was 100% correct haahha only thing i did differently in the merge function is that i just made 1 for loop with 1 if statement and 1 else statement.
@rejected4760
@rejected4760 3 ай бұрын
Isn't the space complexes nlogn because you are creating double the number of arrays each step that combined add up to the original array each step. And since you are splitting the array in half until they can't be split, you split them log base 2 (n) times. So space must be log n times n. Edit: space completely really is O(n) since the recursion works in a depth first way. So you are only using O(n) space at the same time.
@neophilosophy1764
@neophilosophy1764 8 ай бұрын
Nice. Thanks for the video!
@greeneye360k
@greeneye360k 6 ай бұрын
best explanation
@MeditateRelaxEtcetera
@MeditateRelaxEtcetera 9 ай бұрын
That's terrific! I'm working my way thru your videos. Wish I found your channel earlier.
@sprinklepancake
@sprinklepancake Жыл бұрын
Thank you!! this was very thorough and clear!!
@sallaklamhayyen9876
@sallaklamhayyen9876 8 ай бұрын
great job = thank you so much please continue🥰
@engineeringmania9125
@engineeringmania9125 2 жыл бұрын
Thanks man!!! Great video🤗
@vinayshenoy9896
@vinayshenoy9896 6 ай бұрын
very well explained, Thank you very much
@Zashy_P
@Zashy_P 18 күн бұрын
THANK YOU SO MUCH U EXPLAINED IT SO WELL :) :) :) :)
@harshitvarshney3993
@harshitvarshney3993 3 ай бұрын
underrated content
@EzraSchroeder
@EzraSchroeder 2 жыл бұрын
WoW! Gorgeous video! Mergesort can be hard to understand. Great, great job!
@davidcastrocarvajal6850
@davidcastrocarvajal6850 2 ай бұрын
Thank you very much for this video!
@DJSaez-ll8or
@DJSaez-ll8or 7 ай бұрын
Really helpful video, thank you!
@Matthew_080
@Matthew_080 11 ай бұрын
Thanks for explaining merge sort!
@ashutoshswain4050
@ashutoshswain4050 2 жыл бұрын
thanks a lot bro this solution and your explanation is awesome:)
@Jimmy403.J
@Jimmy403.J 2 ай бұрын
Great video very informative
@jamongx1
@jamongx1 Жыл бұрын
Thanks for your explain! it's very helpful to understand!
@Gladio28
@Gladio28 2 ай бұрын
Very helpful, wish you the best
@starwyvern010
@starwyvern010 4 ай бұрын
This helped me so much!
@taido4883
@taido4883 11 ай бұрын
Thank you Bro! However, I still have trouble understanding the recursive part mergeSort(leftArray); mergeSort(rightArray); merge(leftArray, rightArray, array); The mergeSort function continuously divides an array into 2 halves. By the time we call merge(leftArray, rightArray, array), is array still the original array? However, leftArray and rightArray are no longer half of the original array because we call mergeSort(leftArray) and mergeSort(rightArray) before calling merge(leftArray, rightArray, array).
@joimeecajandab1438
@joimeecajandab1438 11 ай бұрын
me tooo.. this breaks my brain
@Snowmanver2
@Snowmanver2 2 жыл бұрын
a concise and helpful tutorial, thanks Bro!
@MikeSieko17
@MikeSieko17 11 ай бұрын
yo bro thanks bro, great stuff bro from one bro to another bro
@AN-rz7bs
@AN-rz7bs Жыл бұрын
Thanks, this video really helped me!
@johnxina7496
@johnxina7496 10 ай бұрын
amazingly explained
@sharifoko
@sharifoko Ай бұрын
Well explained, thanks.
@quantumtea7394
@quantumtea7394 3 жыл бұрын
Thank you for your amazing videos!!!❤️❤️❤️
@dangerbirb4981
@dangerbirb4981 7 ай бұрын
I like your taste in music :D
@sahu_SuMiT
@sahu_SuMiT 8 ай бұрын
awesome, as always....
@JoelRevzen1
@JoelRevzen1 2 ай бұрын
nice explanation, thanks👍
@mike-fl9xi
@mike-fl9xi 2 жыл бұрын
gg bro. super helpful, nice break down
@zulbijadhalid
@zulbijadhalid 17 күн бұрын
you know! you make my day always
@bryanswiger5888
@bryanswiger5888 2 жыл бұрын
Like button smashed..... thanks bro
@nasirbashirov
@nasirbashirov 3 жыл бұрын
Bro king👑
@alaasefa1118
@alaasefa1118 Жыл бұрын
this the most helpful channel thank u a lot🥰🥰
@josy7
@josy7 Жыл бұрын
Thanks for the content !
@ernestselman3955
@ernestselman3955 Жыл бұрын
Hey Bro Code, thanks for the video. It really helped me learn MergeSort. I have a question. In your implementation, would the memory requirements be nlog(n) or n? Since you are creating copies of the arrays as you go down recursively, that would be adding to the memory. If I make the mergeSort method by passing a reference of the original array and indexes representing the start and end of left and right subarrays, then only create the required copies in the merge method before backtracking, wouldn't the maximum memory used be the last step where we would have copies of the entire original array and therefore memory utilization would be 2n or just n?
@brandonkruger9040
@brandonkruger9040 3 жыл бұрын
Thanks for another great video bro.
Learn Quick Sort in 13 minutes ⚡
13:49
Bro Code
Рет қаралды 417 М.
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 535 М.
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
Merge Sort In Python Explained (With Example And Code)
13:35
FelixTechTips
Рет қаралды 231 М.
Recursion in Programming - Full Course
1:51:36
freeCodeCamp.org
Рет қаралды 974 М.
Learn Binary Search in 10 minutes 🪓
10:04
Bro Code
Рет қаралды 130 М.
Merge Sort Algorithm in Java - Full Tutorial with Source
23:02
Coding with John
Рет қаралды 192 М.
Learn Hash Tables in 13 minutes #️⃣
13:26
Bro Code
Рет қаралды 402 М.
Learn Big O notation in 6 minutes 📈
6:25
Bro Code
Рет қаралды 296 М.
Quicksort Sort Algorithm in Java - Full Tutorial With Source
24:58
Coding with John
Рет қаралды 255 М.
Merge Sort | C Programming Example
18:02
Portfolio Courses
Рет қаралды 90 М.
Learn Recursion in 8 minutes 😵
8:19
Bro Code
Рет қаралды 87 М.
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН