In one word your explanation and teaching and the content your providing is better than the paid courses. Thank you kunal sir your dsa course helping us a lot to learn the dsa in easy way. And also we are waiting for the course on DP and Graphs that no-one has created so far !!! so plese make that concepts also
Recursion is the part where even the most intelligent of folks struggle and give up programming. In India, I have personally seen intelligent people reluctant to share their knowledge out of hyper competetiveness. You don't know how many lives you're building by generously sharing this top level knowledge free of cost. God will always bless you for this selfless noble act, Kunal Sir 🙏
Gotta appreciate how you linked the pattern thing to bubble sort and selection sort...at first I was confused about it but then in a moment I was like "woah got it". Top-notch playlist
Dp bro please , u r the best teacher i got so far , and struggling in dp the most , want to study from you !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Kunal, I cannot express my gratitude enough. Your teaching has been exceptional and transformative for me. I have finally grasped the concept of recursion - something that eluded me until now. You are an incredible teacher and mentor. PLEASE PLEASE PLEASE teach us more subjects like Hashmap and Dynamic programming. I am eagerly looking forward to taking those courses as well. 🙏
I'm not a Java Programmer but Getting inspired by you, I have created a new Hackerank Account and started solving the problem solving questions again but this time I am using Recursion only. I have had six stars in problem solving before but I always struggled on Recursion. Thanks a lot Kunal Sir. You gave me inspiration. My core weakness was permutation and combination... Today after watching your algorithm on Recursion: Subset... I implemented the code in C# and I started jumping out of enthusiasm when it ran successfully.. I also implemented dynamic programming to it so it doesn't repeat on the same characters in the string. I can't elaborate with words how thankful I am.
kunal beside programming your are really a good teacher like u started with patterns thats simillar to two sorting technique its amazing and really helpfull thanks
Have to say one has to put everything to create a course like this !!! Thanks for the awesome and intuitive course but kunal bhai please complete this playlist. We really need videos on the rest of the topics!!!!!!!
so here i completed more than half of the videos of this dsa playlist, day by day dsa is looking easy thanks to kunal for this amazing playlist and waiting for you to complete this playlist
really liked how you changed the intuition of pattern algorithm to make us understand the recursions for both the sorts, kinda makes people get up from all the boring tutorial vibe, haha loved it
your explaination is so clear i was able to solve the bubblesort and selection sort problem with recursion without looking your solution first. Thanks a lot brother you're really awesome
Can you helpme out find what's wrong with this selection code after debugging i get to know that the zero index value is swapping with it's next value when the before pass is sorted let me explained what i saw on debugging is arr= 4 , 3 , 2 ,1 where s = 0; e = arr.length-1 when s = 0 (index) e = 2(index) arr is sorted i got the desired answer but when s = 0 and e = 1 it again get maximum value as 1 and rather than swapping with it self it is swapping with next index value and resulting in 2 , 1 , 3 , 4 static void selection_sort(int[] arr) { helper(arr,0,arr.length-1,Integer.MIN_VALUE,-1); } static void helper(int[] arr, int s, int e,int max,int max_index) { if(e==0) { return; } if(s
MindBlowing , u just connected a simple pattern question to BubbleSort , gave JEE feel when my teachers used to connect Advance problems to a simple concept. I am eagerly waiting for the DP series.
Kunal a humble request to please start the topics like Dynamic programming, hashing and stuff. It will be very helpful. Your explanations are good that's why.
Oh gosh, I was banging my head against the wall! I really thought we were going to print the pattern using bubble sort. Now I understand that we're solving bubble sort using recursion, haha
Hey @Kunal, thanks for all the awesome content you are providing for free. This is pure GOLD i must say. Can you point me to some of DP videos you have, I am not able to find anything on DP on your channel?
kunal be like : no i m not gonna explain it again and after 5 mins he is literally explaining same thing just to make us understand , hats off to him man
in the first program, the stack size is the total number of (*) or O(row^2) so we should return until we start printing the next row for good programming practice.
the 1st triangle can be solved using only one variable with the help of a helper function:-- static void pureRecur(int i) { if (i == 0) return; printrow(i); pureRecur(--i); } static void printrow(int n) { if (n == 0) { System.out.println(); return; } System.out.print("*"); printrow(--n); } public static void main(String[] args) { pureRecur(10); }
u make things easier and simpler to understand .... thank u so much for this Recursion playlist 🔥🔥🔥... Learnt a lot from you, like how to approach a problem and different ways of solving a particular problem and so on... keep it up brother 🙂🙂🙂 Love from Kashmir ❤️
10:00 this is also a one method for print the stars method static void triangle(int r ,int c){ if (c 0) { System.out.print("* "); printStars(n - 1); } }
Hi Kunal, Nice playlist ,it is helping me a lot ,I have a doubt like in triangle2 ,I think so you missed to mention that function call like (3,3) ,(2,2) ,(1,1) will also happen .Anyways thanks man for your amazing playlist.
Great coding, probably a little bit improvement to the recursive bubble sort algorithm. We don't need to check further if no swap happened in a row. Here, i is column and end is row. static boolean swapped = false; public static void sort(int[] arr, int i, int end) { if(end < 1) return; if(i < end) { if(arr[i] > arr[i+1]) { // swapping int temp = arr[i+1]; arr[i+1] = arr[i]; arr[i] = temp; swapped = true; } sort(arr, ++i, end); } else { if(!swapped) return; swapped = false; sort(arr, 0, --end); } }
At this stage I'm able to solve given problems before i see your solution 🙌 hats off and huge thanks to you for helping me in developing the approach ❤️💯
32:05 We are considering index value not the exact value. arr[max] = 4 & arr[c] = 4 By mistake kunal says 4 greater than max value. Instead its equal so no updation in max index postion.
Kunal, The TC for best case scenario in Bubble sort is 0(n), however using the recursion example it is still o(n2). Is there a way to include an extra flag as parameter and break recusion if the array is already sorted like we did in iteration example.
Here is my solution to selection sort before explaination static void selection(int [] arr, int length){ int index = 0; int max = 0; if(length==0){ return; } while(index= arr[max]) { max = index; } index=index+1; } //swap int temp; temp = arr[length - 1]; arr[length - 1] = arr[max]; arr[max] = temp; selection( arr, length-1); }
DSA + interview preparation playlist: ruclips.net/p/PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ
bro graphs and dp please
In one word your explanation and teaching and the content your providing is better than the paid courses. Thank you kunal sir your dsa course helping us a lot to learn the dsa in easy way. And also we are waiting for the course on DP and Graphs that no-one has created so far !!! so plese make that concepts also
Recursion is the part where even the most intelligent of folks struggle and give up programming. In India, I have personally seen intelligent people reluctant to share their knowledge out of hyper competetiveness. You don't know how many lives you're building by generously sharing this top level knowledge free of cost. God will always bless you for this selfless noble act, Kunal Sir 🙏
good words and nice name though
@@mysteryman2213 😂
@@mysteryman2213 🤣
i noticed because you said legend
@@mysteryman2213
hahahha
Gotta appreciate how you linked the pattern thing to bubble sort and selection sort...at first I was confused about it but then in a moment I was like "woah got it". Top-notch playlist
Dp bro please , u r the best teacher i got so far , and struggling in dp the most , want to study from you !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Kunal, I cannot express my gratitude enough. Your teaching has been exceptional and transformative for me. I have finally grasped the concept of recursion - something that eluded me until now. You are an incredible teacher and mentor. PLEASE PLEASE PLEASE teach us more subjects like Hashmap and Dynamic programming. I am eagerly looking forward to taking those courses as well. 🙏
Yes, as you mentioned we r waiting for that course on DP that no-one has created so far !!!
Same here!
same here but it's more than one and half year gone!!
still waiting
@@udaysingh2929 khada hu aaj bhi wohi....
still waiting
I'm not a Java Programmer but Getting inspired by you, I have created a new Hackerank Account and started solving the problem solving questions again but this time I am using Recursion only. I have had six stars in problem solving before but I always struggled on Recursion. Thanks a lot Kunal Sir. You gave me inspiration. My core weakness was permutation and combination... Today after watching your algorithm on Recursion: Subset... I implemented the code in C# and I started jumping out of enthusiasm when it ran successfully.. I also implemented dynamic programming to it so it doesn't repeat on the same characters in the string. I can't elaborate with words how thankful I am.
This playlist helps me a lot, thanks man for providing such a brilliant course
kunal beside programming your are really a good teacher like u started with patterns thats simillar to two sorting technique its amazing and really helpfull thanks
the best recursion playlist on RUclips🙌
Thanks Kunal Bhaiya for sharing the knowldege.
Must say it is the best playlist for recursion over the internet so far ...
Have to say one has to put everything to create a course like this !!!
Thanks for the awesome and intuitive course but kunal bhai please complete this playlist. We really need videos on the rest of the topics!!!!!!!
so here i completed more than half of the videos of this dsa playlist, day by day dsa is looking easy thanks to kunal for this amazing playlist and waiting for you to complete this playlist
Kunal Sir please complete this video playlist we really need you out here...
Thank you so much Kunal for teaching us the recursive way of bubble sort and selection sort, that was so amazing.
Recursion guru Kunal Kushwaha. Eagerly waiting for dynamic programming series.
really liked how you changed the intuition of pattern algorithm to make us understand the recursions for both the sorts, kinda makes people get up from all the boring tutorial vibe, haha loved it
that was really cool
your explaination is so clear i was able to solve the bubblesort and selection sort problem with recursion without looking your solution first. Thanks a lot brother you're really awesome
I watch many videos for recursion but your one is the best because the way of teaching is good
Good thought process by making that pattern question relatable to BubbleSort and SelectionSort.. Good knowledge is being grasped from you day by day 🙂
You're most welcome
Can you helpme out
find what's wrong with this selection code after debugging i get to know that the zero index value is swapping with it's next value when the before pass is sorted let me explained what i saw on debugging is
arr= 4 , 3 , 2 ,1 where s = 0; e = arr.length-1
when s = 0 (index) e = 2(index)
arr is sorted i got the desired answer
but when s = 0 and e = 1
it again get maximum value as 1 and rather than swapping with it self it is swapping with next index value and
resulting in 2 , 1 , 3 , 4
static void selection_sort(int[] arr)
{
helper(arr,0,arr.length-1,Integer.MIN_VALUE,-1);
}
static void helper(int[] arr, int s, int e,int max,int max_index)
{
if(e==0)
{
return;
}
if(s
@@KunalKushwaha Please continue this Bootcamp !!😪😭
@@santhosh7042in if condition you have to give like s
Time for a job change...
This is best playlists to work thru...
Hey Kunal, can you share a tentative timeline for this bootcamp? That will be very helpful. Anyways the videos are super awesome !!
Kunal bro on fire 2 videos within 24hrs 🔥🔥
MindBlowing , u just connected a simple pattern question to BubbleSort , gave JEE feel when my teachers used to connect Advance problems to a simple concept. I am eagerly waiting for the DP series.
Bro make a video on how a new coder start it's journey and when we do internship
Thanks for sharing ur beautiful knowledge kunal bro ❤️❤️❤️
Today I have done all easy question from the assignment and tomorrow I will try the medium one
Although...am lil far from this lecture...but thankyouu for the consistency sir❤️✨
Kunal a humble request to please start the topics like Dynamic programming, hashing and stuff. It will be very helpful. Your explanations are good that's why.
I will
@@KunalKushwaha Thank you for this course
@@KunalKushwaha But when????????
Thanks for teaching us like no one did till now!! One small request, please make lectures on dynamic programming as well!!
++
After getting a feel of recursions,I'm able to solve all of them before the video🥲 thanks Kunal🙂
short code for triangle 1
static void pattern(int row , int col)
{
if(row==col)
{
System.out.println();
pattern(row-1,0);
}
if(row>col)
{
System.out.print("* ");
pattern(row,col+1);
}
This playlist helps me a lot, thanks sir for providing such an amazing course..😇
i think for first if(c < r) it should be if(c
@KovidhVSBhati
I believe, in last else condition (when c==r), swap when last element in array is less then max
bro, column value starts from 0, so let say for example r=4, then c will be from 0 to 3. from 0 to 3 four checks are done so no need of c
Oh gosh, I was banging my head against the wall! I really thought we were going to print the pattern using bubble sort. Now I understand that we're solving bubble sort using recursion, haha
Man you taught me how to debug a code , and it is very usefull while doing recursion questions thanku so much
thank you so much for simplifying the selection sort
Hey @Kunal, thanks for all the awesome content you are providing for free. This is pure GOLD i must say. Can you point me to some of DP videos you have, I am not able to find anything on DP on your channel?
Q. 1 solution
Def triangle(n) :
If n==0:
return
Print("* "*n)
triangle (n-1)
Man, please continue this if it is possible.
Bro you bring back my confidence and intrest in programming..❤️
brother, Please start DP series. You are magician.
kunal be like : no i m not gonna explain it again and after 5 mins he is literally explaining same thing just to make us understand , hats off to him man
in the first program, the stack size is the total number of (*) or O(row^2) so we should return until we start printing the next row for good programming practice.
Kunal bro, is it possible to complete this Bootcamp by November 2nd week?
Hope you complete this Bootcamp by mid November!🙏
next year k november a gya abhi tk ni hua🤣🤣🤣🤣🤣🤣
@@yogeshyts han LOL🤣
@@aeroabrar_31 February m start hoga ab bola h usne
@@yogeshyts Kidhar bola hai bhai usne..
Mai toh puri tarah usi par depend hua hoon 🥺
@@aeroabrar_31 twitter p active h wo
*This is my C++ Code. The course is Fantastic.*
void buble(int *arr,int n,int end,int itr)
{
if(end==0)
{
return;
}
if(arr[itr]>arr[itr+1]&&itr
Thanks for the amazing content kunal 🔥 kudos!
Kunal is the OG of DSA teaching
the 1st triangle can be solved using only one variable with the help of a helper function:--
static void pureRecur(int i) {
if (i == 0)
return;
printrow(i);
pureRecur(--i);
}
static void printrow(int n) {
if (n == 0) {
System.out.println();
return;
}
System.out.print("*");
printrow(--n);
}
public static void main(String[] args) {
pureRecur(10);
}
For selection sort we can start column value from 1 since we assign max as 0 in initial all the time , we don't have to check 0 th position with 0th
Sir,you made my life so easy ❤❤❤
Awesome bro..when will you teach us dynamic programming?
Yes but later
@@KunalKushwaha ok 🙂🙂🙂🙂
@@KunalKushwaha dp 😢
Dynamic programming playlist please
u make things easier and simpler to understand .... thank u so much for this Recursion playlist 🔥🔥🔥...
Learnt a lot from you, like how to approach a problem and different ways of solving a particular problem and so on...
keep it up brother 🙂🙂🙂
Love from Kashmir ❤️
You are most welcome
10:00
this is also a one method for print the stars method
static void triangle(int r ,int c){
if (c 0) {
System.out.print("* ");
printStars(n - 1);
}
}
As always, simplified and awesome explanation💚
I was hoping you finish this playlist.
Thanks for this Recursion video
after hint :
static void printPattern(int row , int col , int n){
if(row==0) return;
if(col
Selection Sort Without Max Variable!!
static void selection(int[] arr, int r, int c)
{
if(r==0) return;
if(r>c)
{
if(arr[c]>arr[r])
{
int t=arr[c];
arr[c]=arr[r];
arr[r]=t;
}
selection(arr,r,c+1);
}
else{
selection(arr,r-1,0);
}
}
7:23 eagerly waiting for it bhai!!!
bhai, I can't see dynamic problems video? Can you please upload one .. and bdw loved your content.
Hi Kunal, Nice playlist ,it is helping me a lot ,I have a doubt like in triangle2 ,I think so you missed to mention that function call like (3,3) ,(2,2) ,(1,1) will also happen .Anyways thanks man for your amazing playlist.
Thanks.
bubble sort gives stackoverflow at line no. 53 in your code , kindly take example as 4872.
thanks for this amazing video 🤗👍🏻🔥❤🔥
Thank you my Guru 👏👏👏👏
❤...bro linkedlist,graphs,dp videos?
In every classroom there are such students who ask like this 😁😁
Nice video,but pls complete the playlist
Kunal please make a video on dynamic programming and grap also 🙏🙏❤
Graph*
Awesome content 👏👌
wow this is wonderful really.
@KunalKushwaha when will you start dynamic programming series?
Great coding, probably a little bit improvement to the recursive bubble sort algorithm. We don't need to check further if no swap happened in a row. Here, i is column and end is row.
static boolean swapped = false;
public static void sort(int[] arr, int i, int end) {
if(end < 1) return;
if(i < end) {
if(arr[i] > arr[i+1]) {
// swapping
int temp = arr[i+1];
arr[i+1] = arr[i];
arr[i] = temp;
swapped = true;
}
sort(arr, ++i, end);
} else {
if(!swapped) return;
swapped = false;
sort(arr, 0, --end);
}
}
please complete the course sir
nice content we love your efforts can you suggest me any course of android development❤❤
pls upload dp and graph videos asap
At this stage I'm able to solve given problems before i see your solution 🙌 hats off and huge thanks to you for helping me in developing the approach ❤️💯
asusual kunal rocks!!!!!!!!!!
Bro put space after "as"
I've read it asexual Kunal rocks🤣
What an explanation man!
I love this course
Video 29 Completed!
Kunal, Can I learn C++ and Java together?
I know it's difficult but would there be a bigger problem in the future?
Learn either java or c++ thoroughly first .other language will take max 15 days for completion
@@prakhar266 Completely agree with with you bro, learn anyone first. then switching is to another is quite easy.
Syntax will screw u
If u try to learn it together
@@mohammedsuhail8706 bhai wahi hogaya mere sath .
6:50 bro when u gonna do dynamic programming
Kunal when we will have Trees and Graphs here in this DSA playlist??????
bro please make a series on DP
Great video
Wow , recursion ki ek aur video 😁😁
7 aur ayengi abhi
@@KunalKushwaha omg😌😌😀
Bhaiya (arrays ,pattern , strings..etc )on recursion topic ki easy ,medi ,hard arrange kar dijiye bhaiya please , aur Assignment mein aur ques practice ke hote toh acha rehta
32:05 We are considering index value not the exact value.
arr[max] = 4 & arr[c] = 4
By mistake kunal says 4 greater than max value.
Instead its equal so no updation in max index postion.
Thank You so much brother!
Hello Sir bubble sort code is giving stackOver flow error when size of the array is increased .
Here is the constrain for the length of an array
1
Kunal sir waiting for dynamic programming series 😢😮
woooooo hoooooooooooooooooooo great video ✨😊
when will you upload dp stuff????
Kunal, The TC for best case scenario in Bubble sort is 0(n), however using the recursion example it is still o(n2). Is there a way to include an extra flag as parameter and break recusion if the array is already sorted like we did in iteration example.
Make video on quick sort and mergesort using recursion
Here is my solution to selection sort before explaination
static void selection(int [] arr, int length){
int index = 0;
int max = 0;
if(length==0){
return;
}
while(index= arr[max]) {
max = index;
}
index=index+1;
}
//swap
int temp;
temp = arr[length - 1];
arr[length - 1] = arr[max];
arr[max] = temp;
selection( arr, length-1);
}
still watching consistently
😀😀😀