If you’re new to programming but want a career in tech, I HIGHLY RECOMMEND applying to one of Springboard’s online coding bootcamps (use code ALEXLEE for $1,000 off): bit.ly/3HX970h
Universities, pay to use websites, overpriced textbooks, Udemy courses, exclusive courses: People have to pay hundreds or thousands of dollars to learn even basic Java and it's going to be several long years of study to even get past the introductory phases. Alex Lee: Hold my beer.
Tell me..... Enrolled this so called top 30th best CS universities in the world. So disappointed tubes of money thrown at it and all you get back is self-study. Capitalism just turned to be a piss taken.
This is good as an intro but not good enough for an exam question or interview. You may feel you get it but now write a fibonacci sequence and see if you can do that i bet you can't
Well yeah, this tutorial is not bad, but it's definitely made for "java beginners". For example, when the StackOverflow exception appears he saids that "The computer can't handle it" which is wrong because the computer can handle it, it's just the program stack being overflown. Program stack size is the limitation, not the computer hardware..
@@joeatefabdullah4095 Well no, I'm not saying that he's wrong. When I was learning about recursion, it was important for me to understand how the program stack works, because it then all makes sense. He ignored the topic of program stack in this video in order to make it more beginner friendly, but I'd say that it's very important to understand how the program stack works if you want to fully understand recursion.
How can it save your exams... If u dont even know that hat are u doing here in this university ?? People are not even working alone by themselves today...
@@ValoFranceClips Everyone learns differently and at different speeds. Some people can figure things out by themselves just fine, and other people learn better when something is explained to them by someone else in a certain way. Just because someone learns differently from you doesn't make them stupid or incapable of becoming a programmer. The fact that they're here trying to learn instead of asking for a classmate's code to turn in is actually a really great sign imo.
I absolutely love all of your videos!! You go straight to the point and explain in a way anyone can easily understand. It removes the fear in me when I start coding Congrats on your 10k! Next stop, 100k!!
I watched this video the day before my exam, and I got a question about how to make recursion on my exam. This video really helped me boost up my grades, thank you, Alex, for this video tutorial, I appreciate this so much, it's such a blessing
Thank you so much, I have a Java exam in a week and my prof cancelled all of the classes we were supposed to discuss recursion. The notes for lack of a better term were stupid. This video definitely cleared up recursion :D
Your way definitely simplified it for me. Other teachers are teaching it in reverse where the last method invoked exits first. With your explanation, that way is also easier for me to wrap my head around. Good job man.
Thankyou so much for actually explaining why things have to go where they go! Watched 5 videos before this that didn't help. Yours got me to the right answer, thanks again!
You are an actual life saver man, a god send. I should just set all of your videos on autoplay and take notes on that rather than watching the brain numbing, poorly thought out lectures that my teachers are dumping on me.
I'm addicted to your channel. The past week I was struggling with recursion. However, since I started your playlist, it became expressive easier to fill my gaps and fully understand it. Thank you!
Dude I can't thank you enough for making DSA so easy and understandable for me. I recommend your channel to every person if they ask me something related to java programming. God bless you and I wish that you get a million subs very soon :D
I don’t really leave comments but I have to on this video because this tutorial is the only thing that has helped me learn recursion. Thank you so much!
Finished Playlist one and playlist two of Java basics, now on to intermediate Java. Thank you for engaging with the audience and being so relatable. I am in fond of your teaching and I must say your my Java Guru. Love your videos and thank you for making impact in my life on my journey to becoming a programmer. Lots of love from New York City!
Hope everything's going well dude. I find myself coming back to your channel over and over whenever I'm having issues understanding a certain topic in my CSE classes. Thank you so much for making these videos.. You are truly a gift!
Came across the same topic in w3schools but find the example difficult to understand so I ended up here which is fantastic because everything was well explained and easy to understand. Thanks a lot and keep it up in sharing your knowledge!
Thanks a lot! I've tried to understand how exactly the recursion works for 2 days.. you've explained it in less than 10 minutes! Like and subscription!
5:39 - "So here's what's happening..." then proceeds to explain to me that content that my lecturers couldn't in 2 months of classes in about 40 seconds.
Absolutely amazing. Your tutorials are the best. Your channel should have way more subscribers and you're giving me inspiration not only with programming, but also with your teaching attitude. Keep creating amazing contact!
I dont know if you wil read this, but thank you! Very easy to understand and makes me like Java. It looks so hard when someone doesnt know how to explain it.
Exactly the video I needed. I can't believe free code camp tried to explain this in a few simple sentences. This makes perfect sense after watching your video on it. Thanks a ton.
I'm just happy that I watched this video before I started reading recursion chapter. My books starts off recursion with factorial example followed by Fibonacci sequence and then Sierpinski triangle pattern and many more complex stuff like tower of Hanoi tower problem, etc..🤯 Very good into. Thanks! Don't you say that you are gonna stop teaching again Alex. We need you.
Started my second semester this March and I am so, so, so thankful for all of your videos! 😭 I had to miss a lot of lessons in programming last semester since I've got sick for a couple of weeks and couldn't catch up on everything (and still struggle because of it) But your explanations are great, they're short so my ADHD brain stays focused, your examples are great, and my frustration (and anxiety) stays low. 🙈 Programming is fun and your videos do help me to maintain this mindset and keep trying 💪🏻
In first example code has potential bug, in base case you are checking if n==0, but if user will pass negative number when calling the method recursive method will keep executing that causes again StacjOverflow exception. To avoid these type of edge cases better to pass if(n
this is actually very very helpful! thank you so so much! the explanation is much clearer than any other websites i find online and the examples are perfect!
I just wanted to let you know that I thought bucky was the best programmer in youtube but not until I discovered you, you make programming with a heart, interesting, fun and amazing. I look up into you! uhmm Keep going and stay awesome!
fantastic explanation of recursion. If you see recursion being taught with "Fibonacci sequence "as the first illustration, forget that and use the 2 examples here.
I wanted to cry because of this topic but you know what I really like this channel since you are teaching nicely compared to my professor :) thanks a lot
public class Main { public static void main(String[] args) { insideA("a method"); }
public static void insideA(String string) { System.out.println(string + "being called inside of itself "); insideA("being called inside of itself "); } }
If you’re new to programming but want a career in tech, I HIGHLY RECOMMEND applying to one of Springboard’s online coding bootcamps (use code ALEXLEE for $1,000 off): bit.ly/3HX970h
Universities, pay to use websites, overpriced textbooks, Udemy courses, exclusive courses: People have to pay hundreds or thousands of dollars to learn even basic Java and it's going to be several long years of study to even get past the introductory phases.
Alex Lee: Hold my beer.
Evin Hendry :)
That's True
So would you be a patron for him?
Tell me..... Enrolled this so called top 30th best CS universities in the world. So disappointed tubes of money thrown at it and all you get back is self-study. Capitalism just turned to be a piss taken.
This is good as an intro but not good enough for an exam question or interview. You may feel you get it but now write a fibonacci sequence and see if you can do that i bet you can't
I 've tried and seen a lot of java tutorials both free on utube and others you have to pay for. Without doubt these are the best by a long shot.
Well yeah, this tutorial is not bad, but it's definitely made for "java beginners". For example, when the StackOverflow exception appears he saids that "The computer can't handle it" which is wrong because the computer can handle it, it's just the program stack being overflown. Program stack size is the limitation, not the computer hardware..
@@_________________404 okay wow, computer genius.... bet you cant explain as good as this guy over here
@@joeatefabdullah4095 Well no, I'm not saying that he's wrong. When I was learning about recursion, it was important for me to understand how the program stack works, because it then all makes sense. He ignored the topic of program stack in this video in order to make it more beginner friendly, but I'd say that it's very important to understand how the program stack works if you want to fully understand recursion.
Error Yeah sure, I don’t give a fuck about 5 month old comment anyway.
jonasxdufek you say that but you took time out of your day to reply lmao
You're so enthusiastic and you never make me feel bored while learning how to code! I usually don't comment on videos but you sure deserve it!
dude your such a good teacher literally saving me for my exam!!!!
that is true. he is the best teacher ever!
that is true. he is the best teacher ever!
How can it save your exams... If u dont even know that hat are u doing here in this university ?? People are not even working alone by themselves today...
@@ValoFranceClips Everyone learns differently and at different speeds. Some people can figure things out by themselves just fine, and other people learn better when something is explained to them by someone else in a certain way. Just because someone learns differently from you doesn't make them stupid or incapable of becoming a programmer. The fact that they're here trying to learn instead of asking for a classmate's code to turn in is actually a really great sign imo.
@@ValoFranceClips 10/10 English
Thank you so much! you managed to make two 2hr classes make sense in 9mins ! life saver
Did your teacher take 2 hours to explain recursion?
@@Zinab8850 my teacher can't explain recursion
@@icey_john 🤣🤣
I absolutely love all of your videos!! You go straight to the point and explain in a way anyone can easily understand. It removes the fear in me when I start coding
Congrats on your 10k! Next stop, 100k!!
Hong FuMagic thanks! :)
I started learning coding after Corona virus Pandemic and I will say this is best channel to learn java.
Thank You
recursion were a nightmare ..but after this video it has become day dream
ps:btw ur flips r great...good progress
5:38 explanation is SO helpful and makes it much easier to understand. Love the videos man :)
You broke recursion down so well that I understood on the first try. Thank you so much!!
I watched this video the day before my exam, and I got a question about how to make recursion on my exam. This video really helped me boost up my grades, thank you, Alex, for this video tutorial, I appreciate this so much, it's such a blessing
You're so enthusiastic and you never make me feel bored while learning how to code! I usually don't comment on videos but you sure deserve it!
I find your Java tutorials very helpful. I'm sorry you have stopped making them. Wish you the best :)
I've learned more in a week of watching your videos than in my entire Beginning Programming semester. Thanks.
Thank you so much, I have a Java exam in a week and my prof cancelled all of the classes we were supposed to discuss recursion. The notes for lack of a better term were stupid. This video definitely cleared up recursion :D
Awesome! You deserve more credit for this!
man this is so clear , thank you!!! please keep making these easy videos for people like us.
Reigniting my fire to keep learning to code when I get stuck! Thank you so much for all of these videos!
Your way definitely simplified it for me. Other teachers are teaching it in reverse where the last method invoked exits first. With your explanation, that way is also easier for me to wrap my head around. Good job man.
THANK YOU! In 9 minutes you helped me understand the 18th chapter of my textbook! Thanks Again!
Thankyou so much for actually explaining why things have to go where they go! Watched 5 videos before this that didn't help. Yours got me to the right answer, thanks again!
You are an actual life saver man, a god send. I should just set all of your videos on autoplay and take notes on that rather than watching the brain numbing, poorly thought out lectures that my teachers are dumping on me.
I'm addicted to your channel. The past week I was struggling with recursion. However, since I started your playlist, it became expressive easier to fill my gaps and fully understand it. Thank you!
I love how you explain the if statement, decrement loop, its super clear and easy to understand
Once again your tutorials save me, right before I start drowning in the Universities confusion. Thank you for your tutorials!!!
Dude I can't thank you enough for making DSA so easy and understandable for me. I recommend your channel to every person if they ask me something related to java programming. God bless you and I wish that you get a million subs very soon :D
I know I can always rely on your videos for a top notch explanation!
this is the best java tutorial I've seen. I watch you from Iran.
This has helped a lot, especially since I have an AP exam coming up and I have been struggling with recursion for the longest time
I don’t really leave comments but I have to on this video because this tutorial is the only thing that has helped me learn recursion. Thank you so much!
Finished Playlist one and playlist two of Java basics, now on to intermediate Java. Thank you for engaging with the audience and being so relatable. I am in fond of your teaching and I must say your my Java Guru. Love your videos and thank you for making impact in my life on my journey to becoming a programmer. Lots of love from New York City!
Dude your video is super easy to understand the concept of recursion.Thank you Mann!.Can wait to watch more of your video.
Hey Alex! I love your tutorials! Because you explain everything from bottom up and tell us WHY you're doing WHAT
BEST CHANNEL ON UA-cam HELEPED SO MUCH FOR MY JAVA EXAM
Same story for me, got the explanation in school, but really understood it after watching this tutorial. Great work!
Hope everything's going well dude. I find myself coming back to your channel over and over whenever I'm having issues understanding a certain topic in my CSE classes. Thank you so much for making these videos.. You are truly a gift!
This video saved me in my java class. Recursion seemed so confusing until now.
Ohmigod this is brilliant, after watching your video something clicked and I'm actually understanding everything now
Came across the same topic in w3schools but find the example difficult to understand so I ended up here which is fantastic because everything was well explained and easy to understand. Thanks a lot and keep it up in sharing your knowledge!
Thanks a lot! I've tried to understand how exactly the recursion works for 2 days.. you've explained it in less than 10 minutes! Like and subscription!
5:39 - "So here's what's happening..." then proceeds to explain to me that content that my lecturers couldn't in 2 months of classes in about 40 seconds.
IKR???
You are making a HUGE difference for me while I work through second year comsci
I am so glad I found this video, you saved me a lot of time.
2:41 "it seems like we got a brunch of hi s" 😂It sounds funny, I hope that's my social life be like
Absolutely amazing. Your tutorials are the best. Your channel should have way more subscribers and you're giving me inspiration not only with programming, but also with your teaching attitude. Keep creating amazing contact!
This is an absolute must watch to understand recursion. Fantastic video Alex. Love your content.
I dont know if you wil read this, but thank you! Very easy to understand and makes me like Java. It looks so hard when someone doesnt know how to explain it.
Exactly the video I needed. I can't believe free code camp tried to explain this in a few simple sentences. This makes perfect sense after watching your video on it. Thanks a ton.
Thanks for giving the tutorial given from ur side. I am now slowly learning for my final year project. Really appreciate it!!!
I'm just happy that I watched this video before I started reading recursion chapter. My books starts off recursion with factorial example followed by Fibonacci sequence and then Sierpinski triangle pattern and many more complex stuff like tower of Hanoi tower problem, etc..🤯 Very good into. Thanks! Don't you say that you are gonna stop teaching again Alex. We need you.
I always come first to your training to understand it. You are very talented and make it easy for the rest of us to learn the concepts.
Alex you are my savior. I might actually pass my data structures class now
You're honestly such a lifesaver man thank you so much for this.
Keep doing what you are doing Alex! These videos are truly helping me out immensely!
The best explanation of the recursion on youtube :-)
Thanks a lot!
you are unbelievable, Thank you so much for making things such simple to understand
Started my second semester this March and I am so, so, so thankful for all of your videos! 😭 I had to miss a lot of lessons in programming last semester since I've got sick for a couple of weeks and couldn't catch up on everything (and still struggle because of it)
But your explanations are great, they're short so my ADHD brain stays focused, your examples are great, and my frustration (and anxiety) stays low. 🙈
Programming is fun and your videos do help me to maintain this mindset and keep trying 💪🏻
In first example code has potential bug, in base case you are checking if n==0, but if user will pass negative number when calling the method recursive method will keep executing that causes again StacjOverflow exception. To avoid these type of edge cases better to pass if(n
by far the most helpul videos. thank you alex for making this so simple :')
I really like the way you teach, always very smooth and clear.
thanks you really helped me out for my exam! definetly subscribed! greetings from Bavaria, Germany :)
this is actually very very helpful! thank you so so much! the explanation is much clearer than any other websites i find online and the examples are perfect!
Thank you soooo much. Recursion isn't my fav topic but you made it soo simple for me. I'll surely share this knowledge!
I genuinely thought I would never understand this omg thank you !! :'D
You, sir, deserve my professor's paycheck
You are the best programming teacher I have ever seen you're perfect 👍☺️
Thanks Alex 👍 its been my 7th visit in your channel reallt help dude thanks 😊
You had helped me out twice now, its hard learn programming through printed module
Thankyouu bruh, this mean a lot for me. keep spirit make a lot of Java tutorial, we all love this
Clear, Crystal and excellent explanation.
Alex you are awesome making it more friendly and easy to.understand .thank you
Yet another very great video, easy to understand :) Thank you so much !
Thank you so much, you literally just saved me for my final tomorrow!!
Okay this was super helpful. Thanks for the lesson!
Alex you literally have been so helpful. Thank you so much!
I just wanted to let you know that I thought bucky was the best programmer in youtube but not until I discovered you, you make programming with a heart, interesting, fun and amazing. I look up into you! uhmm Keep going and stay awesome!
My guy Alex saving the day again
The first statement already made me like the video. I'm in college and recursion is about to screw me up in my finals in 2 days time.
Damn! That was smooth AF...
fantastic explanation of recursion. If you see recursion being taught with "Fibonacci sequence "as the first illustration, forget that and use the 2 examples here.
Bro is a very good teacher!
im 15 years old and i find it cool that teens in dual enrollment learn this stuff in highschool provided by the school
Excellent explanation about recursion. Thanks a ton!
I really enjoyed the method you taught. thanks man
Alex Lee you are my hero.
Life saver as usual Alex. Thank you!
Oh, this is an excellent breakdown of an oftentimes tricky subject for many(like myself).
Alex, you're actually a genius.
I wanted to cry because of this topic but you know what I really like this channel since you are teaching nicely compared to my professor :) thanks a lot
So clearly explained, Thank you so much!
Thanks Alex you’ve helped me a lot ❤️
I was reading the book and like wth! Thanks for the explanation.
thank you! you always helps me! keep the good work!
you're helping me a lot, thanks man!
bro thank you this made a lot of sense
Thank you. Learning java with this and Caleb.
public class Main {
public static void main(String[] args) {
insideA("a method");
}
public static void insideA(String string) {
System.out.println(string + "being called inside of itself ");
insideA("being called inside of itself ");
}
}
clear and crystal, thank you so much!
Can you use the for statement instead?
Btw love your videos