Quick Sort For Beginners | Java Placement Course |

  Рет қаралды 584,419

Apna College

Apna College

Күн бұрын

Notes : drive.google.c...
🔥Java Placement Course : • Introduction to Java L...
🔥Complete C++ Placement Course (Data Structures+Algorithm) : • C++ Full Course | C++...
🔥Telegram: t.me/apnikaksh...
🔥Instagram: / dhattarwalaman
My KZbin Gear 😉: docs.google.co...

Пікірлер: 367
@PALTUBABY
@PALTUBABY 2 жыл бұрын
Very nice explanation and loved the last part where it has been explained which sort to use under which circumstances. Being from embedded systems platform, quick sort is better than merge sort because memory constraints are always there in microcontrollers. Thank you so much for this video.
@sports4yoo
@sports4yoo 2 жыл бұрын
Waoo explanation level is too good.. I was so worried about quicksort.. But now you cleared my doubt. Thank you mam for this wonderful explanation. ❤ It helped me to much.
@bapanmaity1166
@bapanmaity1166 2 жыл бұрын
if u understood, then try to explain this {3,2,6,5,8,4}
@ujjawalsingh9942
@ujjawalsingh9942 2 жыл бұрын
Thanks for making this course,this helped me a lotttttt.
@rsmgaming4384
@rsmgaming4384 2 жыл бұрын
Code :- public class QuickSort { public static void quickSort(int[] arr,int low,int high){ if(low
@programmingwithroxy5925
@programmingwithroxy5925 Жыл бұрын
Great explanation.. I have 2 points though... 1. Unnecessary swap during comparison loop If an element is already in its position, the code will swap an element with itself... Swap only if(i>j) 2. Pivot swap is not necessary if pivot is already in place So there can be also if(i
@yashyy397
@yashyy397 Жыл бұрын
I didn't get it can u please explain it with example
@SachinYadav-l2u6b
@SachinYadav-l2u6b 11 ай бұрын
@@yashyy397 time at 16:40
@suar_pilla
@suar_pilla 8 ай бұрын
can you fix it ?
@sagarbtechengineer
@sagarbtechengineer 6 ай бұрын
Aap kahaan the gyani baba😂😂😂😂thankuuu
@jathinyenike4403
@jathinyenike4403 5 ай бұрын
same doubt arised bro
@invisible2795
@invisible2795 2 жыл бұрын
Thank you so much ma'am love you so much 💗💗💗
@MrDee-yy3ii
@MrDee-yy3ii 2 жыл бұрын
Thank you soo much I was always wondering that why quick sort is so tough but after watching that video it became a cake walk for me
@arshdeep011
@arshdeep011 2 жыл бұрын
Low and high ka index to dia nhi hamne,, And it is showing error on first line public class QuickSort { wali line me
@Deox_ff
@Deox_ff 5 ай бұрын
God bless both of u didi or Aman bhaiya ❣️😚
@142-c-nealmourya4
@142-c-nealmourya4 19 күн бұрын
bhaiya babhi bola kar
@ChetnThakre
@ChetnThakre 3 ай бұрын
Where is our jijashree💀⁉️
@gagadhartelgad2595
@gagadhartelgad2595 Жыл бұрын
Java language is very hard but i can learn java language because i whant to be en engineer tarefor i am learning english si anything is no more so , by by
@anurag9833
@anurag9833 2 жыл бұрын
Mind blowing explain
@Bad_Avadh
@Bad_Avadh 2 жыл бұрын
You can also put if low== high .... Then should return
@shivanisingamsetty1943
@shivanisingamsetty1943 11 ай бұрын
nice explanation thanks
@keshav7891
@keshav7891 2 жыл бұрын
Mai computer science karna chahata hu or 12th mai it and computer science nhi tha or muje be tech karna hai computer science karna chahata hu please aage kya karne chaiye ispar ek video banayo please
@Anushka06383
@Anushka06383 2 жыл бұрын
I. Love this Didi 😘😘😘😘 Didi you always motivated me
@Rieshu-l9i
@Rieshu-l9i 7 ай бұрын
#Apna College & shradda Didi rocks
@uchihaPrincessSakura
@uchihaPrincessSakura 2 жыл бұрын
nice explanation shraddha di
@kocengineering769
@kocengineering769 2 жыл бұрын
Hello Mam good work Needed for all
@ytg_fl1ck
@ytg_fl1ck 2 жыл бұрын
Didi Always JOd💪💪
@harmindersingh5364
@harmindersingh5364 2 жыл бұрын
Thanks mam for making these videos.
@arzoojain4941
@arzoojain4941 Жыл бұрын
Omg.. U r the best!
@samridhig3gupta203
@samridhig3gupta203 2 жыл бұрын
Hey please make a series of important series of questions for each video its my request
@saadarman4718
@saadarman4718 11 ай бұрын
Great explanation.
@subhammallick5275
@subhammallick5275 2 жыл бұрын
Remembering Ross saying pivot in friends
@SUNILKUMAR-fs6ob
@SUNILKUMAR-fs6ob 2 жыл бұрын
Overpowered intro
@sakshi3737
@sakshi3737 2 жыл бұрын
thank you didi so much
@walkthrough777
@walkthrough777 2 жыл бұрын
public class QuickSort { public static int partition(int []arr,int low,int high) { int pivot=arr[high]; int i=low-1; for(int j=low;j
@Nishchaymusic
@Nishchaymusic Жыл бұрын
i was just about to die finding someone who is pronouncing pivot correctly on youtube!! Thankyou so much i'm just watching this video to hear someone teaching quicksort pronouncing pivot correct. Now i can die piecefully :)
@justfeelit6573
@justfeelit6573 2 жыл бұрын
Java videos ruk gayi dii di
@saadsaif5849
@saadsaif5849 9 ай бұрын
5:21 wah api g🤣🤣
@shubhamjha1695
@shubhamjha1695 3 ай бұрын
one of the easy code #include using namespace std; int helper(vector &v, int s, int e) { int pivot = v[e]; int i = s; for (int j = s; j < e; j++) { if (v[j]
@theturtle9810
@theturtle9810 2 жыл бұрын
Thank you guys
@selfstarofficial
@selfstarofficial 2 жыл бұрын
*Please make a video for computer science class 12 term 1* 🙏
@harshsingh2637
@harshsingh2637 2 жыл бұрын
Hello didi
@harshsingh2637
@harshsingh2637 2 жыл бұрын
I am in iit ropar mechanical can I get it packages.
@maheshkamble8121
@maheshkamble8121 2 жыл бұрын
hiii
@deebyendumondal816
@deebyendumondal816 Жыл бұрын
Didi ka up quick sort ka implementation with dry run karke ek video upload kar payenge . Me ne bohot bar Deka upka video but samaj nahi a raha he ki Kona code kiu use ho raha he
@omprakashkumar-fd9jq
@omprakashkumar-fd9jq 2 жыл бұрын
Thank you ma'am. Your teaching methods is well. 🙏
@sheshkumarroy8124
@sheshkumarroy8124 2 жыл бұрын
excellent
@mr.bhupendersharma8366
@mr.bhupendersharma8366 2 жыл бұрын
When she says Microsoft wali didi suddenly Cortana came to my mind 😂😂
@anonmous2001
@anonmous2001 2 жыл бұрын
Thank you didi❤️☺️😘
@adnanpatanwala1682
@adnanpatanwala1682 2 жыл бұрын
in swapping pivot why can't we write like this : int temp = arr[i]; arr[i] = pivot; pivot = temp; return i; i am not getting the appropriate ans output
@swagatpandak7325
@swagatpandak7325 2 жыл бұрын
She has written that.
@atharv_rege5869
@atharv_rege5869 6 ай бұрын
What is the name of the time complexity extension
@nikhil_sn
@nikhil_sn 2 жыл бұрын
Can u plzz make one video if we have below 60% in puc
@m.shivakarthik
@m.shivakarthik 10 ай бұрын
thank you very much
@midhattech
@midhattech Жыл бұрын
Try to upload Google doc file, it's easy to use
@gurpreet2145
@gurpreet2145 2 жыл бұрын
what is the error in the code?? public class Main { public static int partition( int arr[], int low , int high ){ int pivot= arr[high]; int i=low-1; for( int j=low ;j
@imharry404
@imharry404 2 жыл бұрын
Thanks
@anikethjana
@anikethjana 7 ай бұрын
microsoft wali didi xd
@SAC_Marathi
@SAC_Marathi Жыл бұрын
samj mein kya aur kisike magj mein aaya kya
@joebob6953
@joebob6953 Жыл бұрын
kya baat hai
@ITconceptwithDishu
@ITconceptwithDishu Жыл бұрын
I hate quick sort 🥺🥺🥺
@3lpme
@3lpme 2 ай бұрын
I used to feel the same but now I'm loving it
@rohitkapade1130
@rohitkapade1130 Жыл бұрын
Thank you so much
@stunningustad1245
@stunningustad1245 2 жыл бұрын
I am the first here 😀😀
@PranabLovesEveryone
@PranabLovesEveryone 2 жыл бұрын
2nd...
@Tejasav_Vats
@Tejasav_Vats 2 жыл бұрын
1st
@avirupghosh5879
@avirupghosh5879 2 жыл бұрын
Iss didi aur aman bhaiya ke kripa se hum bohot kuch free of cost sikh rege hain😀
@devotion_surya3741
@devotion_surya3741 2 жыл бұрын
Free ka gyan in the end quick sort or merge sort Kab used krna chayie
@johnhammond3605
@johnhammond3605 Жыл бұрын
Paid course khareed le muftkhor bangali
@JaswinderSingh-Phy
@JaswinderSingh-Phy Жыл бұрын
Iss dedi nhi bhai Shradha dedi
@sangatsingh2547
@sangatsingh2547 Жыл бұрын
Sun aman jiju bol, agar shrda didi h to, ok
@AnkitKumar-vn4cj
@AnkitKumar-vn4cj Жыл бұрын
​@@johnhammond3605Bhai bahi😅😅😅
@anushkarathore8712
@anushkarathore8712 2 жыл бұрын
i must have seen thousands of videos but the way this girl explains all the concept with such an ease.....she's great!!!!
@ChetnThakre
@ChetnThakre 6 ай бұрын
Yaa✅
@shreelekham.k.9141
@shreelekham.k.9141 5 ай бұрын
Yes😊
@atulsingh2177
@atulsingh2177 4 ай бұрын
Hi can we talk please...
@maheshkamble8121
@maheshkamble8121 2 жыл бұрын
Hii
@anurag9833
@anurag9833 2 жыл бұрын
Mam
@dhruvabhattacharya
@dhruvabhattacharya 2 жыл бұрын
First
@husain_bhai0
@husain_bhai0 Жыл бұрын
Hello Aman Bhaiya, There are few more concepts that we need as in college as professional, if possible if you can make video on these concepts of Java: Java API Packages Multi threaded programming Managing Error and Exception Managing I/O Files Java Collection Applet Programming AWT Event Handling JavaFX JDBC Java Networking Thank You
@triplesgamers4461
@triplesgamers4461 2 жыл бұрын
Hi
@princ3kumar569
@princ3kumar569 2 жыл бұрын
Superb and amazing 💗 course bhaiya aur didi Proud to be have a great guide 😊 in you
@ringtok7436
@ringtok7436 Жыл бұрын
pivit nahin didi pivot hai
@amaypandey1893
@amaypandey1893 2 жыл бұрын
Didi Plz Make A Video On How To Study When You Don't Feel Like Studying 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@firdoshiii
@firdoshiii 2 жыл бұрын
Should I do BCA MCA integrated degree or should I do only BCA first than MCA .I'm very much confused . Please help me
@triplesgamers4461
@triplesgamers4461 2 жыл бұрын
Bhaiya
@shreevaths7511
@shreevaths7511 Жыл бұрын
how to make the output appear in VS code as shown in this video at 18:39 ?? this output console shows output in a clear format and also the runtime of the program is visible !
@harshilverma6549
@harshilverma6549 2 жыл бұрын
1. Roadmap, goals 2. Independent self reliant 3. Patience 🙂 4. Mentorship
@mdsaif2453
@mdsaif2453 2 жыл бұрын
1 min
@SarthakDeshmukh07
@SarthakDeshmukh07 Ай бұрын
Didi Aapki Nak Ko Kya Hua 👃🏼🤥 ? 🤔
@danishshaikh23403
@danishshaikh23403 2 жыл бұрын
Continue the series don't stop.......it has been 10 days for the last videos.......this much gap is spoiling the placement activity
@alokgautam859
@alokgautam859 2 жыл бұрын
if you are really serious for placement then join apna college alpha bootcamp
@amitmaurya5637
@amitmaurya5637 2 жыл бұрын
Microsoft Wali Didi 😆
@pratikbhowmik
@pratikbhowmik 2 жыл бұрын
A big thank you for this JAVA series . Can't thank you enough for this course please keep this series going on . It's so helpful . I randomly landed on your videos due to a learning nessesity and I am finding it damn helpful .
@gagadhartelgad2595
@gagadhartelgad2595 Жыл бұрын
Yes you are right
@dangerouscoder3364
@dangerouscoder3364 2 жыл бұрын
Ye java + DSA placement course kab tak complete hoga
@Rahulyadav-vz5sj
@Rahulyadav-vz5sj 2 жыл бұрын
Jitna karvaya utna to padh lye Tu..
@decypor
@decypor Жыл бұрын
ganta bi kuch nahi ati he use, geeks for geeks ka program hei, aur explanation me low ko pivot liya , program mei high bata raha hei, kud ko hi pata nahi kuch bi bak raha hei.
@sunnym1692
@sunnym1692 2 жыл бұрын
This series is really great and a great apportunity for us to learn dsa with Java. One request to Apna College team to please make video fast and upload within 1 to 2 days. Thank You ❤️
@rushikeshdhane4755
@rushikeshdhane4755 2 ай бұрын
hii shradhha mam.when i exceute this program .it generate an error stackoverflow. how to sort out the output
@triplesgamers4461
@triplesgamers4461 2 жыл бұрын
Thanks to you
@playhaze6965
@playhaze6965 2 жыл бұрын
Yaar yeh kitni awesome hai 🥺😂
@soumyaranjangumansingh9080
@soumyaranjangumansingh9080 2 жыл бұрын
Of course...Di is absolutely awesome
@bhushanpatil1979
@bhushanpatil1979 Жыл бұрын
Thanks for dark background....🙏
@geniustechnical9653
@geniustechnical9653 2 жыл бұрын
Code ko dryrun kijiye plz mam 10 bar video watch kar liye hai but samajh nahi a rha hai
@bikku945
@bikku945 10 ай бұрын
Samajhh nahi aaayaa par sunke aaacha lagaa😂
@Nishchaymusic
@Nishchaymusic Жыл бұрын
5:25 "Greatest Life Lesson"
@nachikettekade9510
@nachikettekade9510 Жыл бұрын
I got it
@anmolpreetsingh8375
@anmolpreetsingh8375 Жыл бұрын
Should be coming from one who is double😂
@sksk-bf6js
@sksk-bf6js Жыл бұрын
ayooo what :)))
@kartikkhandelwal9675
@kartikkhandelwal9675 2 жыл бұрын
Whose channel is this... Aman Bhaiya or Microsoft wali Didi😂😂
@rishabhgaming2.082
@rishabhgaming2.082 Ай бұрын
Thankyou mam ❤❤❤
@ScottHanchett
@ScottHanchett 19 күн бұрын
Thomas Maria Anderson Betty Jackson Thomas
@adithyat753
@adithyat753 Жыл бұрын
Ma'am in "partition" function it must be j
@reenayadav8468
@reenayadav8468 2 жыл бұрын
Please upload more video in java placements question as soon as possible🙏
@rohitkunta8328
@rohitkunta8328 Жыл бұрын
In so many videos they said that i need to cross j then that i will be pivot value , it's true , but coding According to that is complex one , but mam u made it veryyyy simplified way and u made a simple code for this complex , really an excellent work mamm👍👍😍........
@gedelasivakrishna
@gedelasivakrishna Ай бұрын
Maja aaya 👏👏
@AnimeWibes123
@AnimeWibes123 Жыл бұрын
A great thanks to you guys for the java , Web development , C++, Python along with DS+Algorithms .It's really so help full . Keep Develop yourself. Best of luck for the future.... :) :) :)🙂
@AnandSingh-rp5lj
@AnandSingh-rp5lj 2 жыл бұрын
Sister isme kuch bi samajh. Nahi aaya Sirf pivot ke baare main
@Hz-qz5mr
@Hz-qz5mr 4 ай бұрын
I wish she would have solved the challenge in javscript
@bhargavaramudu6481
@bhargavaramudu6481 Жыл бұрын
dear sometimes use some English words or explain in English
@deepakbhagat811
@deepakbhagat811 2 жыл бұрын
why Microsoft wali didi never talk about c#
@HarshitGupta2209
@HarshitGupta2209 2 жыл бұрын
The quality of course is superb. Thanks Shradha. Request you to post the lectures regularly and if possible provide the roadmap of lectures
@shivanshchauhan5630
@shivanshchauhan5630 2 жыл бұрын
Didi quick short ko kya ham ascending order bhi khe sakte hai ye jo elements apne arrange kiye the ascending order mein the isiliye
@someshsisodia3830
@someshsisodia3830 Жыл бұрын
no you can arrange them in descending order also by making changes in code
@srkajolfan6341
@srkajolfan6341 Жыл бұрын
I was worried for my exams because I couldn't find any video to solve my main concept of sorts and suddenly I got this , now I got a relief...
@krishnawadhwani5393
@krishnawadhwani5393 2 жыл бұрын
Last wala swap samajh nahi aaya jab 9 and 8 ko swap karna tha 🥲
@latikapatil1208
@latikapatil1208 7 ай бұрын
DSA ki playlist kha milegi please help
Merge Sort | For Beginners | Java Placement Course
21:25
Apna College
Рет қаралды 675 М.
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 9 МЛН
Ozoda - Lada (Official Music Video)
06:07
Ozoda
Рет қаралды 13 МЛН
Как мы играем в игры 😂
00:20
МЯТНАЯ ФАНТА
Рет қаралды 3,2 МЛН
Lecture36: Quick Sort using Recursion | Day-6 | 10 Day Recursion Challenge
37:55
Quicksort Sort Algorithm in Java - Full Tutorial With Source
24:58
Coding with John
Рет қаралды 242 М.
2.8.1  QuickSort Algorithm
13:43
Abdul Bari
Рет қаралды 3,2 МЛН
Quick Sort For Beginners | Strivers A2Z DSA Course
35:17
take U forward
Рет қаралды 402 М.
Learn Quick Sort in 13 minutes ⚡
13:49
Bro Code
Рет қаралды 343 М.
Quick Sort Using Recursion (Theory + Complexity + Code)
42:14
Kunal Kushwaha
Рет қаралды 178 М.
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 9 МЛН