Sir thanku so much .your way of teaching awesome sir... Sir u r the key for all engineering students... I wish your channel will grow more and more.... Sir thanku once again.
you are the best teacher in the world sir agar ap hmara college ma hota fr to top krna tha pka or attendence b puri hoti sir ap punjab university ma apply kro pls
Really sir , you explain all the topics very interesting and also very easily. Even though I don't know "Hindi" I can able to understand each and every word you say , that's crystal clear 😍 Till now , I haven't know how to calculate the Time complexity. But now, I understood only because of you sir I hope this playlist on algorithms should be continued sir :-)
I can see that this code snippet is borrowed from the book called "BIBLE OF ALGORITHMS" ;Introduction TO algo by Thomas. You're literally perfect if you've read that.
Really liked the way you explained with the cards. Made it really easy to understand! Great Help! Thanks! You're better than most teachers! Keep it up! You've earned yourself a subscriber!
It always helps to write the output in the comments of your first traveral, then the program would run in the first go... public class InsertionSort { public static void main(String[] args) { int[] a = {77, 23, 54, 223, 101, 65, 283, 99, 300, 1}; for (int j = 1; j < a.length; j++) { int newElement = a[j]; //23 int i = j - 1; // 0 while (i >= 0 && newElement < a[i]) { a[i + 1] = a[i]; // {77, 77, ...} i = i - 1; // i = -1 } a[i+1] = newElement; // {23, 77, ...} } // printing the sorted array for (int i = 0; i < a.length; i++) { System.out.println(a[i]); } } }
Sir app ko 2 sal se follow kar raha hon, is video ma pehle dafa dekha aap muskara rahe hain. khosh raho Sir❤
sii kah raha ho
Leagend watching it one day before exam 😅😅😅😅😅
I have exam in 4 hours
One day 😂I have my exam in two hours and I watching it right now
No bro idhr pokara na lag jai 1 month phela he start KR RHA ho
Yesss tomorrow is my CS exam😂
Super legend watching 1 hr before exam 😂😂
Your pedagogy is unique and focused on gate aspirants..
Thank u sir!
kya hua bro gate thoda ya nahi
please reply .
Already memorised the algo for exam but now that you shown the real life example, it's crystal clear. Thank you sir
Great sir, Computer science has been easy to understand by you only thanks sir
Best Teacher ever I have seen on UA-cam 👌Appreciation from Pakistan 🇵🇰
Bhai tum log q padh rahe ho
😂🤣🤣
@@toxic5630 haa yaar batao 🤣 last me to bam he phodna h
@@toxic5630 yar ap logon k algorithms k concept may be clear hon but humanity k bara bilkul zero ho
@@mani_513sahi kaha tune Bhai...👍
This is Indian talent dude 😎🆒
Great lecture sir...All the concepts related to this sorting technique (working,example,complexity) in one video and well explained..Thank you sir
Sir thanku so much .your way of teaching awesome sir... Sir u r the key for all engineering students... I wish your channel will grow more and more.... Sir thanku once again.
Thank you from the bottom of my ♥
Ultra legends watching in washroom on the day of exam
Good
Accuracy level...📈📈📈
Bhai abhi bathroom ma betha hu😂😂😂
@@TrendCasterX GOAT
Same here😂
Sir, your teaching style is so attractive, thank-you. Huge respect from PAKISTAN
UAF
u are incredible ...one of best tutor on UA-cam
Happy to see you making progress. Nice setup.
The way u teaching is osm and example is also great dude❤️
you are the best teacher in the world sir agar ap hmara college ma hota fr to top krna tha pka or attendence b puri hoti sir ap punjab university ma apply kro pls
Such a good explanation💪🏻
Teaching methodology to apki bahut achi h no doubt... But background 👌🏻👌🏻👌🏻👌🏻
Great sir ap K lecture zabardast Hai sub clear ho jahta ... Watching from Balochistan
void insertionSort(int A[], int n) {
int i, j, temp;
for (i = 1; i < n; i++) {
temp = A[i];
for (j = i - 1; j >= 0; j--) {
if (A[j] > temp) {
A[j + 1] = A[j];
A[j] = temp;
} else {
break;
}
}
}
}
code in C of insertion sort algo
And Most Important Your Teaching style is Amazing
I watch Your videos and I Understand each and Everything about Topics
Very nice sir
Great explanation 👌👌👈
Really sir , you explain all the topics very interesting and also very easily.
Even though I don't know "Hindi" I can able to understand each and every word you say , that's crystal clear 😍
Till now , I haven't know how to calculate the Time complexity. But now, I understood only because of you sir
I hope this playlist on algorithms should be continued sir :-)
working from home sir, million million thankyous for this great explanation.
fantastic bhaiji :-)
sir u are god for me , the way you explain each topic is way way better than others out there. love u a lot sir , keep making these videos . thank you
Thank you Sir, it was very helpful
Wow anna after long time I am seeing you and I'm keep on waiting for your classes.🙂
att kraa dinda h eh bndaa kya padhatee ho yrrr too goood
studying for up lecturer ,thanks for amazing lecture sir
Really mja aa gya sir 👍👍
Best channel for it+ cs students
one of the best teacher for data structure .....
i am so clear with insertion sort, thank you for this valuable video
Amazing sir this is my first video of your's 🥰🥰
Pp
Ppl
P0pl
L
L
Real life jitu vaiya ..Thankyou so much
Arrey Sir Sir Sir, Jo Line boli na apne, "Engineering Student to reh hi nahi skte iske bina" - Ek Number 😄😄 , To Be Honest, your Classes are Fun
Great & Very Helpful Video,Thankyou sir.
Amazing explanation.... And amazing teaching... Thanku..... I easily understood.....
All subjects of CSE becomes very easy only because of you Sir . Superb explanation 👍👍
Awesome 😎 I found my all study subjects in this channel 🥰😘
The way of your teaching is of billions words.
Keep going ... You will reach at the highest point
I can see that this code snippet is borrowed from the book called "BIBLE OF ALGORITHMS" ;Introduction TO algo by Thomas. You're literally perfect if you've read that.
Sir please vedios uplaod kijye aap UA-cam pr design and analysis of algorthms pr.
Really liked the way you explained with the cards. Made it really easy to understand! Great Help! Thanks! You're better than most teachers! Keep it up! You've earned yourself a subscriber!
much love and respect from pakistan apka way teaching boht acha hai easy hai bundle of thanks
Amazing!
Waooo nice sir thankyou
amazing and easy to understand
Simply the most beneficial channel for me....
VERY SHORT AND INFORMATIVE LECTURES . I AM FEELING COMPUTER SCIENCE EASY BECAUSE OF YOUR LECTURES THANKS SIR
Your Explanation way is better than others.
It always helps to write the output in the comments of your first traveral, then the program would run in the first go...
public class InsertionSort {
public static void main(String[] args) {
int[] a = {77, 23, 54, 223, 101, 65, 283, 99, 300, 1};
for (int j = 1; j < a.length; j++) {
int newElement = a[j]; //23
int i = j - 1; // 0
while (i >= 0 && newElement < a[i]) {
a[i + 1] = a[i]; // {77, 77, ...}
i = i - 1; // i = -1
}
a[i+1] = newElement; // {23, 77, ...}
}
// printing the sorted array
for (int i = 0; i < a.length; i++) {
System.out.println(a[i]);
}
}
}
Very nice explanation
Great one!
As usual awesome class with you sir 😊
Amazing 👍👍
Great sir!
You are great sir your teaching style superub👌👌
You're great sir!!...very well explained...thank youu so much:)
Tooo much great teaching too good
Sirrrrr I really love your videos but bhttttt speeed me smjhaya ghooom gya sara kuch
Nice explained
One of my most favorite teacher
bohot badiya
Sare doubt clear ho gya,Sir jee🙏🙏
Really good explanation Sir🤗🙏
Very usefull vidoo sir
This video is very helpful for me because inthis video all points are covered about insertion sort.
Thanks for this video😊
Your way of teaching is excellent and awesome ☺☺
easiest explanation ever😍😍😍😍😍😍😍😍😍
Excellent
Great work sir
Sir smiled for first time : 3:09
Amazing way for your teaching😍
Excellent 👍👍👍 sir
Very short and efficient lectures . Thanks a lot sir
Awesome explanation 😄
Ur example is just awesome. You are my god sir❤️❤️❤️❤️❤️❤️❤️
Sir You are a great teacher
Amazing videos!
was never able to understand the complexity but you made is so easy sir...thankyou so much!
Outstanding Sir
PERFECT, Thanks a lot sir
Thank u so much sir 😊
sir you are very helpful ,,i from pakistan
Legend was those who reading on exam day
Are*
yes 😂
Thank you so much 😊
🎉
WAy of teaching is too good 😍
thanx for teaching cards as well
Thank you very much sir, your videos are easy to understand and of great help.
TNX❤️
Amazing
Legend watching it in computer lab 10 min before viva
sir I am very thankful to you for giving very informative video
Amazing bawa
JAZAK ALLAH SIR
Thank you for the video
Sir code vale videos aur banaya karo.... achhe se samaj aata hai
Well explained ❤
mentor of all mentors
Sir I am from a biology background but after watching this video i think I can learn c easily thank you ❤