Algorithms EXPLAINED in 30 seconds: Selection Sort 👩‍💻 #technology #programming #software

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Thank you so much for this. This is gold to me, because I am so struggling to find every essential information about pc/programming in general. So sure you are lifesaver!!

lukaschumchal
Автор

again a banger video, but i think the pointers are a little bit off? for example they just randomly merge and split. love the videos and effort though!!! <33

mariusschatz
Автор

ThT graphic made no sense with the way you explained the orange going to the smallest value then not sticking on one

brentbottoms
Автор

how selection sort works:(231456)compare the number unsorted(2)with the array and find a smaller number(1)swap(132456)compare the second unsorted number(3) and find a smaller one in the right the right half to swap(no number)compare(4)and again no number is smaller then(4) compare(5)again no number is smaller then(5) there is nothing after (6) so it is done(123456)

guoxiangmo
Автор

What algorithm would you like to see me do next? 🤔

CodingWithLewis
Автор

The animation is not good,
it causes confusion instead of making it easier to understand. 😄

the_infinity_snake
Автор

If you have access to a sorting library or just know how to do it just stick with merge sort which has a O(n log n) complexity for the worst case.

ettiennevanzyl
Автор

It would be fun to learn DSA like this.

suyashbhawsar
Автор

Programming languages implement mostly quick sort as a sorting algorithm

AhmedHemaz
Автор

Congrats on 100k Lewis. I love ur vids.

LowLevelLemmy
Автор

Please Make more videos explaining concepts

kamaljitkaur
Автор

Please continue this DSA series would be willing to see more duration videos over these topics

hritikapal
Автор

I used Recurison of the sort fxn To Not have my Smallest value be changed to the next comparing unit . Because I never learned it by anyone and just heard how it happens 💀

maysonrider
Автор

Selection sorting is better than insertion sort is wrong. Insertion sort has best case in O(n) while selection sort still O(n2)

thodang
Автор

I'm sorry but you already failed at the beginning: "index" is not a word a 5 year old would understand. Try using pointy picky thingy

Rumplestiltzchen
Автор

I was told insertion sort was faster than selection. Is this not true?

gingeral
Автор

Bubble, insertion and selection all have the same time complexities and all sort in place. What makes selection more powerful?

max_k
Автор

It should just have been "pick the smallest value, swap it with the top, ignore the top and repeat"

hachihao
Автор

im teacher and i like to know how you create sort animation

sinasj
Автор

The explanation of the algorithm is correct, but the time complexity is incorrect.

Selection sort actually has the worst time complexity (including best, average, and worst case) out of all the sorting algorithms.

No matter what case, selection sort’s time complexity is O(n^2) which is pretty terrible

sirussalari
join shbcf.ru