Selection Sort Algorithm

  Рет қаралды 267,772

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 371
@CodeWithHarry
@CodeWithHarry 4 жыл бұрын
Very few people have followed the playlist till here. But dont worry chahe 100 views aaye ya 1 view aaye course poora khatam karunga!
@Sub-sw4zd
@Sub-sw4zd 4 жыл бұрын
Best content on KZbin All the best👍
@harshitrathi3077
@harshitrathi3077 4 жыл бұрын
Thankyou Bhaiya. We Will support you till the end. And Dont worry Views Dheere dheere aajyengey, you keep On Uploading....... Just wait and watch Till the end of 2020 you will have 1M Subscribers And 10Lakhs Views On Dsa Playlist
@samyak235
@samyak235 4 жыл бұрын
Dedication of Harry :o .
@harshitrathi3077
@harshitrathi3077 4 жыл бұрын
Quick Sort and Merge Sort is Only Left Now
@asty8488
@asty8488 4 жыл бұрын
Sir muja 10th ka bad coding la ne ha kya lu ma pls reply
@sagar8880
@sagar8880 3 жыл бұрын
this man is damn underrated in his teaching skills
@webseriesworld1791
@webseriesworld1791 3 жыл бұрын
19:14 As per swaps -> Selection sort is adaptive because if the array is sorted then we have to do less swaps but As per comparisons -> Selection sort is not adaptive because even in Best Case we have to do all the comparisons Thnx harry bhai for all this !!!!!
@rvpandey-k4v
@rvpandey-k4v 10 ай бұрын
we are very thankfull to get these kind of person who are trying to support those people who can not able to afford expensive courses for this subjects but still we are not supporting these people . i am the biggest fan of @codewithharry sir keep it doing we always try to support you but instead of being supporting some people abuse these people iit is kind of very thoughtfull think how they are living on our mother earth.
@IamZaxs
@IamZaxs 4 жыл бұрын
I DON'T SKIP ADS ONLY FOR HARRY'S HARDWORK
@itsrish4real
@itsrish4real 4 жыл бұрын
On the same boat on that one.
@abhishekganapure6456
@abhishekganapure6456 3 жыл бұрын
U watch ads to complete tanvi's story
@balajimahenderker5326
@balajimahenderker5326 3 жыл бұрын
@@abhishekganapure6456 😂🌝
@rahulvishwakarma6235
@rahulvishwakarma6235 3 жыл бұрын
Tum bhut achcha kam krte ho man !!!
@sarveshwarsingh1308
@sarveshwarsingh1308 2 жыл бұрын
yeah, get youtube premium
@abhisheksah99
@abhisheksah99 10 ай бұрын
i listened only for first 5 min and was able to code the selection sort thank you sir
@rupamsud718
@rupamsud718 4 жыл бұрын
Chahe abhi nahi dekho gaa lekin jaab time aayega tu jarror dekho ga aur samjho gaa kyuki abhi mujhe patah nahi hain ki yai kyaa hain. Your videos are like that I can even watch them after 100 years
@AbhishekMishra-fn5bq
@AbhishekMishra-fn5bq 4 жыл бұрын
Very simple and clear explanation of Selection Sorting, Big Thanks. Please finish this course.
@prathamrajgor
@prathamrajgor 2 жыл бұрын
Tried Writing code Just After explanation and it Works perfectly fine void SelectionSort(int *arr, int n){ int temp; for (int i = 0; i < n - 1 ; i++) { for (int j = i+1; j < n ; j++) { if(arr[ i ] > arr[ j ]){ temp=arr[ i ]; arr[ i ]=arr[ j ]; arr[ j ]=temp; } } } }
@blackwolfkills
@blackwolfkills 3 жыл бұрын
Plzzz don't stop making these videos as they are really great........plzz
@shatviksmit3388
@shatviksmit3388 3 жыл бұрын
19:18 No, Selection sort is not adaptive as it will do all the comparisons as done in the case of unsorted array
@shaikhmukhtar5748
@shaikhmukhtar5748 Жыл бұрын
I'm learning DSA with superb entertainment ❤️
@PGiri2002
@PGiri2002 2 жыл бұрын
Time - 2:34 void selectionSort(int *arr, int length) { int temp,elm; for (int i = 0; i < length-1; i++) { elm=arr[i]; for (int j = i; j < length; j++) { if (elm>arr[j]) { temp=arr[i]; arr[i]=arr[j]; arr[j]=temp; } } } }
@EngineersKatta004
@EngineersKatta004 2 жыл бұрын
My college is not serious about DSA,I think they are also watch your videos and teaches to us,But harry bhai aap jo mehenat kar rhe ho hamare liye usko 21 tofo ki salami
@saharajaman894
@saharajaman894 3 жыл бұрын
My favourite tutor. I always follow this channel and learn java basically. ❣️❣️
@oyepuru
@oyepuru 4 жыл бұрын
Next Roadmap Competitive Programing Brother Like For Better Reach Everyone
@samirrobin3524
@samirrobin3524 2 жыл бұрын
Sir's way of explaining is truly amazing! It makes the complex topic also too easy for us to understand...Thank you very much Sir..❤️❤️🥰🥰
@technicalnitians8968
@technicalnitians8968 4 жыл бұрын
Bro Trees and Graphs topic is left That's the important one topic to cover in this DSA
@ViratKohli-x8q
@ViratKohli-x8q Жыл бұрын
Harry Bhaiya you are the best teacher for CS students Love You
@gulshan2052
@gulshan2052 4 жыл бұрын
Harry sir, you are awesome. You do so much of hard work for us.
@adityakumar6945
@adityakumar6945 2 жыл бұрын
Thanks a lot ! I am a beginner ...started coding a month back. Really scatched my head over this one......
@durgawatisingh8350
@durgawatisingh8350 4 ай бұрын
Very simple clear explanation all clear understanding 👌👌👌👌👌👌👌👌👌👌👌👌👌👌👌👌💯💯💯💯
@ChetanBhole
@ChetanBhole 4 жыл бұрын
Mujhe Pata Nii Tha Apne DSA Ka Course Start Kr Diye Just Abhi Maine Playlist Access Ki.
@engineerbhai7642
@engineerbhai7642 4 жыл бұрын
You deserve millions subscribers.
@aaishuagarwal6629
@aaishuagarwal6629 2 жыл бұрын
Please complete the series as soon as possible
@RahmatKhanZai89
@RahmatKhanZai89 2 жыл бұрын
वास्तव में अद्भुत सामग्री
@udaykirankavaturu6942
@udaykirankavaturu6942 Жыл бұрын
Harry bhaiya done with this thank you 24:37
@asishkumarsingh9276
@asishkumarsingh9276 2 жыл бұрын
Harry bhai course bahot hi acha hai
@DipsOfficial802
@DipsOfficial802 2 жыл бұрын
Thank you harry bhai for such a great course 🙏🙏🙏
@aku_11_11
@aku_11_11 4 жыл бұрын
❤️❤️ Harry bhai u r my life..💜💜 "Placement". kee liye bhi kuch tips bata do plz Harry bhai.!!!!!
@nageshsalgude3572
@nageshsalgude3572 2 жыл бұрын
thank you Harry bhai for making such useful content
@mfcd7-
@mfcd7- 4 жыл бұрын
Thanks Harry bhai you are doing great work for us❤️❤️
@Ajinkya_Chirde_07
@Ajinkya_Chirde_07 Жыл бұрын
best explanation Harry bhai👍
@knirmandeb
@knirmandeb 4 жыл бұрын
Love your teaching styles bro
@IT__HarshVaish
@IT__HarshVaish 2 жыл бұрын
Very simple language.
@ridham7120
@ridham7120 4 жыл бұрын
Codewithharry is the best
@TwinshuParmar
@TwinshuParmar 3 жыл бұрын
Thanks Harry Bhaiya... Stay Blessed
@Karthik-kt24
@Karthik-kt24 3 жыл бұрын
Very helpful channel! goldmine for students! may god bless u 🙇‍♂️🙏
@phnix5661
@phnix5661 4 жыл бұрын
harry sirji will you provide the notes for these videos or we should start taking notes
@royfamily9273
@royfamily9273 2 жыл бұрын
Thanks Harry Bhaiya
@abhishekganapure6456
@abhishekganapure6456 3 жыл бұрын
Kardi adla badli harry bhai khub maza aaya
@studynewthings1727
@studynewthings1727 2 жыл бұрын
Thankyou man to simplify concepts with perfect examples
@myselfarav3024
@myselfarav3024 4 жыл бұрын
Harry sir, you are just amazing. You deserve much more subscribers and viewers and likers and commenters...
@yasharyan9814
@yasharyan9814 Жыл бұрын
bhaiya coding toh aapse hi samajh mein aati hai 👍
@vedantmule6237
@vedantmule6237 3 жыл бұрын
Yes, I think it is adaptive , Honestly.
@HarpreetKaur-wb2sk
@HarpreetKaur-wb2sk 3 жыл бұрын
Excellent way of teaching
@than0s869
@than0s869 2 жыл бұрын
Great Explanation Ever 🤠
@atulwadhwa192
@atulwadhwa192 3 жыл бұрын
@CodeWithHarry , by default its non adaptive but cant we make it adaptive??
@shalinisharma3777
@shalinisharma3777 2 жыл бұрын
@codewithharry Harry Bhai A very huge thanks to you ❣️🌸✌️
@sudarshanmhaisdhune1039
@sudarshanmhaisdhune1039 3 жыл бұрын
Wow! Such a learning 💗
@NITISHKUMAR-vu8gy
@NITISHKUMAR-vu8gy 4 жыл бұрын
app se achha teacher nhi hai koe
@anshdholakia714
@anshdholakia714 4 жыл бұрын
19:23 not adaptive, because the algorithm will compare the numbers even if the array given is sorted
@Forever._.curious..
@Forever._.curious.. 2 жыл бұрын
Masttt jaa ra he 🤩🙌🏻
@VijayKumar-go6cr
@VijayKumar-go6cr 4 жыл бұрын
Who is following him from last year?🤗🤗
@binodofficial8420
@binodofficial8420 4 жыл бұрын
Me
@aryankumar87771
@aryankumar87771 4 жыл бұрын
Binod
@kushal6065
@kushal6065 3 жыл бұрын
Binod
@princesukhala7106
@princesukhala7106 2 жыл бұрын
7:00min Done done
@SahilSingh-oc1ps
@SahilSingh-oc1ps 4 жыл бұрын
Bhaiya tree topic bhi details m pdha do...... And thanks a lot for all your playlists ❤️
@anexocelisia9377
@anexocelisia9377 3 жыл бұрын
Selection Sort Take a pointer at the start of the array and traverse the array and find the min element and swap. Then simply increase the pointer and do this till last element of the array. No, it is not adaptive as it will do comparisons for swapping even when the array is already sorted.
@kushal6065
@kushal6065 3 жыл бұрын
pointer?
@bug244
@bug244 2 жыл бұрын
Thanku haary sir for your hard work
@pankajkumarsingh3521
@pankajkumarsingh3521 2 жыл бұрын
greatt coursee sirr
@rishabhshukla2523
@rishabhshukla2523 3 жыл бұрын
Bhai plzz continue ds lecture
@manashalder3999
@manashalder3999 3 жыл бұрын
Yes I understood this algorithm
@NITISHKUMAR-vu8gy
@NITISHKUMAR-vu8gy 4 жыл бұрын
sir app k liye bas kya hi bplu lajawab
@mohammadfaisal3649
@mohammadfaisal3649 3 жыл бұрын
harry bhai sath mai code bhi karaya kro yar please ......overall your content is very good
@umeshchandra7441
@umeshchandra7441 4 жыл бұрын
Sir plz make a course on game development with unity
@sohaibmughalmughal4680
@sohaibmughalmughal4680 2 жыл бұрын
Great teacher
@ConfusedBeachHammock-tc8km
@ConfusedBeachHammock-tc8km 6 ай бұрын
Thanks a lot
@sharjeelashraf9887
@sharjeelashraf9887 Ай бұрын
19:17 Selection sort is not adaptive as it requires a complete to be done in order to make the comparisons between the elements but can be made adaptive like wise we have done in the case of bubble sort algorithm.
@NavneetKaur-nc6vp
@NavneetKaur-nc6vp Жыл бұрын
Thanks
@ilovejs1768
@ilovejs1768 3 жыл бұрын
gazab explanation harry bhai
@aayushibahukhandi
@aayushibahukhandi 3 жыл бұрын
You are awesome!!! 🥳
@meme_menaty
@meme_menaty 4 жыл бұрын
harry bhi please make a video on java in 1 video this is very imp for us
@yatinarora1252
@yatinarora1252 4 жыл бұрын
Never been this early...thanku so much for ur precious time
@AbdulRahman-tj3wc
@AbdulRahman-tj3wc 3 жыл бұрын
Why Selection Sort is not Adaptive if number of swaps is zero in sorted arrays???
@ritikjain6952
@ritikjain6952 4 жыл бұрын
Harry bhai we also want to see videos on graphs and trees
@subhrajyotidas2569
@subhrajyotidas2569 3 жыл бұрын
treasure of ds
@ShaksD-vf3go
@ShaksD-vf3go 3 ай бұрын
Goat=harry bhai❤❤
@tinkurana9481
@tinkurana9481 Жыл бұрын
Mast kag raha dir mai pahle bar se ikh raha hun
@shubhamad4684
@shubhamad4684 3 жыл бұрын
sir ji stack k bad wale notes bhi de de to humare liye kafi suvidha hoti
@MrSaint-ch6xn
@MrSaint-ch6xn 4 жыл бұрын
18:20 selection sort is not adaptive
@RohanDasRD
@RohanDasRD 4 жыл бұрын
Best Explanation Bhai!
@webdeveshverma3214
@webdeveshverma3214 2 жыл бұрын
harry sir i love you ye chej to hum masai school me rs 300000 de kr bhiii nh sikh paye thank you thank you
@MrSaint-ch6xn
@MrSaint-ch6xn 4 жыл бұрын
A biggest thank you for you ❤️❤️❤️😘❤️❤️❤️❤️
@AbdullahKafi-wp2me
@AbdullahKafi-wp2me 3 ай бұрын
54 done
@manglatripathi9321
@manglatripathi9321 4 жыл бұрын
Please make a video on erlang
@surendersuthar1315
@surendersuthar1315 3 жыл бұрын
Sir bahut muskil lagta h..ye..☝️☝️🙆
@rupakdutta5577
@rupakdutta5577 3 жыл бұрын
5 months ago u promised this:"Very few people have followed the playlist till here. But dont worry chahe 100 views aaye ya 1 view aaye course poora khatam karunga!" Kaha gye wo promise ? Tbh,not one ever explained DS the way u did.
@mujeeburrehman8145
@mujeeburrehman8145 2 жыл бұрын
sir selection sort is not adaptive but we can make it adaptive like key = arr[0]; min = arr[0]; aftar one whole pas we check if (key == min) return;
@ankurdahiya3611
@ankurdahiya3611 2 жыл бұрын
lmao it'll not work bro because consider if only 1st element is less than all other elements....then it'll return for example {0,25,34,1,2} it'll return if 1st element is lesser than others
@dipakkumarsingh9884
@dipakkumarsingh9884 2 жыл бұрын
Respect 🙆🏼‍♂️💯
@suhanikerkar
@suhanikerkar Жыл бұрын
Thanks understood well ;)
@ridham7120
@ridham7120 4 жыл бұрын
Sir kya aap javascript in one video with notes ka tutorial banauge?
@pankajkumarsingh3521
@pankajkumarsingh3521 2 жыл бұрын
u r greatt
@shivrajyadav925
@shivrajyadav925 4 жыл бұрын
Good explained
@blackwolfkills
@blackwolfkills 3 жыл бұрын
Great explaination.....
@Aspi12354
@Aspi12354 3 жыл бұрын
Awesome Video👍👍
@akshatvashishtha1
@akshatvashishtha1 3 жыл бұрын
19:08 no not adaptive will do n-1 passes and n^2-n comparisons
@chotakhanshab2220
@chotakhanshab2220 4 жыл бұрын
Thanx bro
@hrishikeshpatel6670
@hrishikeshpatel6670 4 жыл бұрын
Sirr plzzz one video on object detection in python plzzzz 🙏🙏🙏🙏
@ritikchoudhary9601
@ritikchoudhary9601 3 жыл бұрын
OSSUM Video bhai i
@ankurdahiya3611
@ankurdahiya3611 2 жыл бұрын
i didn't understand why Selection Sort is not (Adaptive)? because as you said in last videos an algorithm is Adaptive if our efforts are minimized if an array is sorted........here if array is sorted we didn't have to swap elements...so effort is minimized should it not be Adaptive?
@supershorts3592
@supershorts3592 Жыл бұрын
Have you watched the whole video 😂
@ankurdahiya3611
@ankurdahiya3611 Жыл бұрын
@@supershorts3592 yes i did
@Matrix_Mayhem
@Matrix_Mayhem 3 жыл бұрын
thanks harry bhai
Selection Sort Program in C
15:27
CodeWithHarry
Рет қаралды 217 М.
QuickSort Algorithm in Hindi (With Code in C)
52:29
CodeWithHarry
Рет қаралды 389 М.
Elza love to eat chiken🍗⚡ #dog #pets
00:17
ElzaDog
Рет қаралды 23 МЛН
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 2,7 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 61 МЛН
Bubble Sort Algorithm in Hindi
32:22
CodeWithHarry
Рет қаралды 360 М.
MergeSort Sorting Algorithm in Hindi
35:34
CodeWithHarry
Рет қаралды 324 М.
Analysis of QuickSort Sorting Algorithm
20:14
CodeWithHarry
Рет қаралды 96 М.
Insertion Sort Algorithm in Hindi
32:17
CodeWithHarry
Рет қаралды 331 М.
7.3 Bubble Sort Algorithm| Data Structures Tutorials
35:36
Jenny's Lectures CS IT
Рет қаралды 1,5 МЛН
Count Sort Algorithm
27:05
CodeWithHarry
Рет қаралды 125 М.
Bubble Sort By Abdul Bari
20:10
Huzzii Editz♥️🔥
Рет қаралды 85 М.