If you have reached this far, congratulation we have completed 4 weeks of Consistency ❣
@YashSaini007 Жыл бұрын
Good Morning Bhaiya
@vishalpratapsingh6994 Жыл бұрын
Good morning bhaiya
@amanchahar8913 Жыл бұрын
Hello bhaiya . you will also give the homework for Saturday and sunday by this we known what we do in Saturday and sunday please give the homework pdf of Saturday and Sunday
@ankushladani496 Жыл бұрын
Wooho......❤🎉🎉🎉🎉
@63bankardipak38 Жыл бұрын
😊
@narutodihargo Жыл бұрын
00:00= Introduction to Bubble Sort with example, 09:25= Example-02 , 13:15= Code Analysis & Thinking , 15:53= Debugging the code, 17:20= arr.length , 19:40= Example 02- Code part, 24:40= *** Outer Loop Important Concept ****, **26:47**= explain " j
@MONU-so9xh4 ай бұрын
i have watched your first 20 videos of your dsa with cpp playlist and i can confidently say that, it is the best playlist for in depth understanding and real time practice, i did't liked coding when i was a beginner but now completing these video made me a bit more confident about myself as a coder, btw i am a 2nd year student in ece dept, at the end i just want to say a hell lot of thanks to you.....
@RohitRaj-xh6tb Жыл бұрын
bhaiya ka smjhane ka tareeka bilkul alag hai on board smjhana pure youtube pe aisa nhi hai last me code part v add krte hain... thanku bhaiya ... pura chamka
@ddoy7378 Жыл бұрын
Iss aadmi ki consistency ko salam hai !!!
@YashSaini007 Жыл бұрын
Bhaiya Thank You for delivering us the best content on DSA.
@CoderArmy9 Жыл бұрын
Thank you
@dev_guidance Жыл бұрын
What an explanation 😂 bhaiya itna rehpat mara shuru k tin minute me hi pura samjh me aagya. Now I am implementing by my self
@animeshkumarsingh4291 Жыл бұрын
#180DaysofCode Day - 26 Lecture -20 Successfully Completed ✅✅✅
@AlkeshDhaka3 ай бұрын
Thanks bhaiya 😊. Completed at day 9
@abhayraj898222 күн бұрын
// Optimized Bubble Sort with an early exit condition for (int i = 0; i < n - 1; i++) { bool swapped = 0; for (int j = 0; j < n - 1 - i; j++) { if (arr[j] > arr[j + 1]) { swap(&arr[j], &arr[j + 1]); swapped = 1; } } // If no elements were swapped, the array is already sorted if (swapped==0) { break; } }
@vinaypatil8009 Жыл бұрын
This video is better than yesterday video in terms of explanation and clean writing Pls follow this style Explain everything like this video with new slides 😊
@63bankardipak38 Жыл бұрын
We are not of that level, to suggest him .
@ahmad-zu2zz5 ай бұрын
mja lga wo topic srf meri smjh ma ni aya
@Shauryousee6 ай бұрын
HELLO SIR JI ive completed 3 lecs today itself with HW mazaa hi aa gaya bhaiya ab seriously im enjoying these lecs❤❤
@SHIVSHANKAR-qv3bg Жыл бұрын
This is much better and detailed explanation lecture then Last lecture ❤
@MayankPal07187 ай бұрын
bhaiya dil se thank you for providing best content in free ❤
@skuhd5543 Жыл бұрын
Hello sir, When i open your video to check the concept of bubble sort because iam java students and when i open video i Iike it so much that watch whole video of bubble short in c++, teaching was superb i request you sir to make a playlist on java because java is very famous you will reach more audiance and will definitely gain more and more subscribers in no time, please make java playlist your awesome sir.
@mohdali-yq8gq Жыл бұрын
Wonderful methodology to explain the algorithm
@explained73711 ай бұрын
Thankyou jaaan❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
@SnehaKashyap61093 ай бұрын
Thank uh bhaiya😭❤
@sumitvishwakarma1075 Жыл бұрын
Thankyou bhaiya ❤❤
@sudipghosh1165 Жыл бұрын
Bhaiya aapka video dekhne ke badh pura doubt khatam ho jata hai Thanks bhaiya ❤
@pawar2811029 күн бұрын
Awesome lecture ❤🎉
@-BCS-VarshaVaishnav Жыл бұрын
26/180 done thanku bhaiya bubble sort chamk gya
@electricalengineer55402 ай бұрын
super se upar
@Code..1883 ай бұрын
Lec 20 completed 😊
@Mohit_kashyap836 Жыл бұрын
Gajab ki consistency hai bhayaa🎉🎉🎉❤❤❤
@fahadraza71527 ай бұрын
Thank you so much for providing amazing lectures/tutorials.
@riteshhhhh_01 Жыл бұрын
Consistent bhaiya ❤
@payalthakur60659 ай бұрын
Day 2 ..😊 of coding consistency
@yes-its-goliya7 ай бұрын
🏃♀Day 5✅ concept cristle clear Thank you so much Leader of coder army
@techheist4624 Жыл бұрын
bhaiya please sunday ko questions practise karaya karo it will really helpful for us..
@beastincarnet11066 ай бұрын
u are best bhaiya
@abdxlive7 ай бұрын
Thank You Sir ❤ I Am In Love With DSA
@asmazahra579 Жыл бұрын
The Best Explanation, Awesome!!
@joydeep-halder Жыл бұрын
HW Solution for question 2: Sort in increasing order by taking smallest number to the first place. ✅✅ for (int i = 0; i < n - 1; ++i) { bool swapped = false; for (int j = n - 1; j > i; - -j) { if (arr[j] < arr[j - 1]) { swap(arr[j], arr[j - 1]); swapped = true; } } if (!swapped) return; }
@pruthvigamer14596 ай бұрын
bro Isme tumhe right answer aa gaya ? Kyu ki mera thoda different hai
@dontreadmybanner20025 ай бұрын
Tumara code kesa hai mere bhi ye bhai jesa hai same@@pruthvigamer1459
@rhitam_biswas5 ай бұрын
August 2 : Revision Day 2 Bubble Sort Done ✅✅✅
@NajmGameplay Жыл бұрын
another method void insertionSort(int arr[],int n){ for(int i=0;i
@arpitkhandelwal82807 ай бұрын
Day-20 , Done and Dusted
@strangerthings7412 Жыл бұрын
Bhaiya please provide links of the question you take from various platforms it will be easier for us to do so
@anupamatul939311 ай бұрын
Good Explaination thankyou bhiya💛💛💛
@_hulk748 Жыл бұрын
Great Video Sir💖✨🙇♂🙏
@suplexshivam10 ай бұрын
Thankyou sir ❤ huge support for you
@a71patiladitya45 Жыл бұрын
day 26/180 hard Consistancy bhaiya..... 🔥🔥🔥🔥 thank you so much ♥♥♥♥
@savitagurjar10346 ай бұрын
thankyou bhaiya . very good explanation
@ShyamBaba-i6y Жыл бұрын
now time is 6:00 am good morning bhaiya
@CoderArmy9 Жыл бұрын
Good morning bhai❣
@Updatedknowledge9 Жыл бұрын
Bhaiya dbms, networking and other fundamental subject ke liye other channel open karo, so that fundamental subject bhi sikh sake humlog
@AyushGupta291643 ай бұрын
swap function mere wale compiler main nahi chal raha hain
@GayatriShejule-o1k21 күн бұрын
Thank you so much sir🥰
@faysal_islam7 ай бұрын
Thank you dada,love from Bangladesh
@Manmohansingh-dx6rd Жыл бұрын
DAY 26/180 Bhaiya you are my inspiration jb aap uttrakhand aaoge to ek meet up jrur rkhna hme aapse milna h you are my inspiration bhaiya ♥️
@beastincarnet11066 ай бұрын
bhaiya decreasing order ke liye bss if wale loop me greater(>) ko smaller(
@YashKumar-nn9mc10 ай бұрын
great way to learn from here
@ankushladani496 Жыл бұрын
Done Bhaiya... 26/180 ✅
@deepanshurathore8136 Жыл бұрын
Suber explanation Bhaiya
@mriduakaxxehacker Жыл бұрын
Great brother ❤
@KNOWLEDGEBLE01Ай бұрын
Bhaiya please ho ske to reply kr dena .... Kya y playlist se hmare Gate k liye bhi DS&Algo prepare ho rha hai kya ?????
hello bhaiya. your videos are amazing. ye leetcode ka konsa question number hai bubble sort ka?? please btado
@rachitkatariya11 ай бұрын
voh gfg ka question hai
@ARJUN-n6j5k4 ай бұрын
bhaiya iske handwritten notes kaise milenge please bta do
@GOATSOFFOOTBALL10 ай бұрын
Day 2 completed
@cseianfarmesh Жыл бұрын
Good morning ❤ Day 5
@krukiheight Жыл бұрын
Day 26 done
@rishijha32017 ай бұрын
cout
@nishantnigam9263 Жыл бұрын
Thankyou sir 😊❤
@sarikasaxena5567 Жыл бұрын
H.W=Bubble sort: Decreasing order code #include using namespace std; int main(){ int arr[1000]; int n; cout
@tush464 Жыл бұрын
in inner loop for(int j = 0; j
@ShivamSingh-cd3iu Жыл бұрын
#26 day complete ✅🎉
@ManjunathReddy_Chinnakotla6 ай бұрын
nice video
@BhavyeJain-j4n Жыл бұрын
Bhaiya 20th lecture completed. I have done bubble sort with this approach. void bubble_sort(int arr[], int n){ int i, j; for (int k=0; k
@kartikgupta2160 Жыл бұрын
26/180 days completed #180DaysOfCode
@RajeshKumar-sy6jy Жыл бұрын
All clear
@SabinPoudel Жыл бұрын
Awesome ❤
@thesilentspectatorr Жыл бұрын
Good morning🌞
@lyricalboy9281 Жыл бұрын
Day 25 completed #180daysCoding chaallenge #CoderArmy
@yashpaliwal5634 Жыл бұрын
Ram Ram Bhaiya 😊❤🙏🙏
@dontreadmybanner20025 ай бұрын
Sir ye code mene phele hi mere man se kardiya tha
@CoderArmy95 ай бұрын
Ye toh cheating hai mere sath🥲
@dontreadmybanner20025 ай бұрын
@@CoderArmy9appne reply thanks sir
@dontreadmybanner20025 ай бұрын
@@CoderArmy9sir app best hoo mene phele codehelp sir ke DSA DEKHE muje samj nahi aya vo bhot fast laga appka DSA pura samj aaraha hai
@nirjuskarmakar5379 Жыл бұрын
Thank you sir
@dipakmali9817 Жыл бұрын
Day 26 Done ✅ 26/180 #CoderArmy #180DaysofCode 🔥
@suchitkumar7560 Жыл бұрын
Arrange the data in descending order. #include using namespace std ; int main () { int n,arr[100],i,j; bool s=0; cout n; cout arr[i-1]) swap(arr[i],arr[i-1]); s++; } if(s==0) break ; } cout
@suchitkumar7560 Жыл бұрын
Is question ko solution karne 3-4 hr spend but mission successful
@eye-queue Жыл бұрын
Bhaiya Aap Lecture 19 ka Home Work Discuss nahi kiye hein please kar dena mein bana liya hu bas confirmation chahiye
@AMITKUMAR-ds4hp Жыл бұрын
Good morning boss ❤❤❤
@CoderArmy9 Жыл бұрын
Good morning bhai❣
@itshirdeshk Жыл бұрын
Day 26 ✅
@Aryan-wl7mc Жыл бұрын
GOAT 🔥🔥🔥
@CoderArmy9 Жыл бұрын
Thanku
@bhushanpatil-vt2tc Жыл бұрын
bhaiya java bhi padane wale ho kya core+advance
@theflotaa5648 ай бұрын
wo kaun tha jo advise de ra tha ki alpha ka batch lele bhai alpha se 100 time acha padhate hai bhaiya
@xavdokАй бұрын
Ye alpha batch kya hai?
@manishsirwal988114 күн бұрын
@@xavdok apna college ka koi course hoga
@coder4214 Жыл бұрын
Bhaiya I have to take break until 25 Oct as my mid sems are approaching from Monday... 😢I will complete all backlog after 25... bye 😢
@K-lz3wu4 ай бұрын
How is your coding going?
@joydeep-halder Жыл бұрын
Good morning bhaiya ❤❤
@CoderArmy9 Жыл бұрын
Good morning bhai❣
@joydeep-halder Жыл бұрын
@@CoderArmy9 ❤❤
@maroofgpm Жыл бұрын
HOme Work: 1) Just change sign from > to < for the if condition inside inner loop 2) for(int i=n-2; i>=0; i--){ if(arr[i] > arr[i+1]){ counter++; swap(arr[i],arr[i+1]); } }
@rayansiingh10 ай бұрын
your answer of 2 hw ques is incorrect because in your code the bubbles are forming from the start CORRECT ANS: // bubble sort increasing order from the end int main() { int arr[1000]; int n; cout > n; // for inserting elements cout > arr[i]; } // swapping for (int i = 1; i = i; j--) { if (arr[j] < arr[j - 1]) { swapped = 1; swap(arr[j], arr[j - 1]); } } if (swapped == 0) { break; } } // for printing swapped array for (int i = 0; i < n; i++) { cout