Let me know if you guys want me to go more in depth with these types of videos :)
@HARI-gm5qz7 ай бұрын
yesss plz do search algorithm
@AdamAdam-dn4st6 ай бұрын
Yes please
@castigousmetamageus83566 ай бұрын
Your explanations & animations are very clear & concise, so YEAH! Especially with the most used DSAs in professional scenarios --not just academical scenarios.
@ahmadentertainmentshorts42226 ай бұрын
Yes please
@mahavirpatel15176 ай бұрын
DSA question solving with great approach to fit In mind
@babrad6 ай бұрын
When we learned about bubblesort in c lessons I really hated how slow it was so I tried to improve it, ending up with mergesort. I know this is nothing but I'll never forget how happy I was reinventing the wheel without reading about it elsewhere to the point this was almost 20 years ago but I clearly remember every detail -code was complete jank-
@CodingWithLewis6 ай бұрын
Thats why its awesome to learn bubble sort! So you know to improve it!
@vikraal69744 ай бұрын
I have the same story except I ended up with shell sort 😅
@geang.carneiro39824 ай бұрын
i have a similar story. once a teache asked the students to get a list of numbers, create a binary tree, then get the values sorted, it was all fun until we had to process a HUGE amount of numbers, 10% of class didn't made it, and 90%(including me) was geting stack overflow due the amount of recursive call. i was the only one(and others students that copied my solution) who was able to bypass this erro by modify the algorithm to use single call with loop instead of recursive call
@RazorIance3 ай бұрын
this resourcefulness is what separates an engineer from a developer
@MyCodingDiary6 ай бұрын
You have such a knack for explaining things clearly. Awesome job!
@CodingWithLewis6 ай бұрын
I appreciate that!
@BriariusTitan6 ай бұрын
my man lewis making gold content. every video and short is a hit man. keep up the awesome work
@2MinutesScienceChannel7 ай бұрын
I made a sorting algorithm in Excel! It's really easy and I call it Neural Sort!
@CodingWithLewis7 ай бұрын
Post it
@2MinutesScienceChannel7 ай бұрын
@@CodingWithLewis I don't know how to post it, but here is how it works: It seperates it into pairs, and then sort the pairss. All the data is then organized as pairs again but the pair combination is moved 1 number to the right. It keeps repeating between these two so 4, 1, 2, 5, 3 would become (4, 1) (2, 5) (3) Sorts into (1, 4) (2, 5) (3) Then it shifts to become (1) (4, 2) (5, 3) Which is then sorted into (1) (2, 4) (3, 5). Repeat the first step and becomes (1, 2) (3, 4) (5) When it is sorted it is then output.
@dushalkumar7 ай бұрын
Did you use a filter or something 😅
@2MinutesScienceChannel6 ай бұрын
@@dushalkumar No it isn't. You need to compare values.
@josef61266 ай бұрын
great work dude :)
@saber-seathearn826 ай бұрын
I just wanted to say this is one of the best videos I have watched for a topic like this. I wanted to learn something while I ate some food and this was really insightful and informative. Also straight to the point. I also really liked all of the graphics and the way you explained everything quickly and throughly.
@codingwithroby6 ай бұрын
This video is not getting enough love! The way you made this entertaining while sharing real information on sorting algorithms is crazy good.
@thecodebendermaster6 ай бұрын
Man love the vibe of your videos👌 Feels more and more cinematic
@Sinthoras1557 ай бұрын
My favourite sorting algorithm is still Stalin Sort.
@CodingWithLewis7 ай бұрын
Stay tuned 😎
@Timbalo04 ай бұрын
How does it work? Eliminate all elements except one that pleases you and then define the problem to be solved?
@SingularityHRT3 ай бұрын
What about Mao ZeSort?
@UHN.406Ай бұрын
We need a "The artist sort"
@vigneshshanmugam7 ай бұрын
We want more of Data structure and algorithms video ❤
@Isaiahken23 күн бұрын
I have watched other people like Brocode and others. But you helped me understand them. Thank you so much!
@eechotunes4 ай бұрын
5:55 "Heap is a tree-based data structure where all levels are filled except the lowest and is filled from the left to right." This is true but what's with the visual going against that definition? the 4 should be the left child node of the 3, shouldn't it? otherwise it's not being filled from the left lol
@maxca7 ай бұрын
I would love if u get more in depth in these, very interesting video!
@mrqk006 ай бұрын
This is a really good video as a refresher because of its concise descriptions and neat visualizations, while also being entertaining with witty remarks about the algorithms
@CrSt-m2e6 ай бұрын
Finally a new long form video
@antoniogorisek7 ай бұрын
Thanks for the video. Which sorting algorithm do you use the most?
@CodingWithLewis7 ай бұрын
I've been using merge sort! Love it
@smaug98335 ай бұрын
Quick sort with pivot: median of(first, middle, last element) Go ahead and try beat it's performance.
@Pacvalham6 ай бұрын
If you can sort integers, you can sort colors. Black = 0x000000, Blue = 0x0000FF, Green = 0x00FF00, Cyan = 0x00FFFF, etc.
@primenumberbuster4047 ай бұрын
Now make one which will Sort these sorting algos as per requirement.
@maunilparikh19636 ай бұрын
THIS IS SO UNDERRATED! Wish my CS profs explained like that! Love from India
@ExplodeCode6 ай бұрын
amazing lewis! I only knew about some of them lol
@mlook_i27112 ай бұрын
*correction* the best case doesn't called Big O it's called Omega, and if it's both equal it's called Theta , thanks for the effort
@Whelknarge2 ай бұрын
Forgot about DontSort: function DontSort(arr) { let newArr = new Array(arr.length).fill(null); for (let i = 0; i < arr.length; i++) { let randomIndex = Math.floor(Math.random() * arr.length); while (newArr[randomIndex] !== null) { randomIndex++; if (randomIndex>= arr.length) { randomIndex= 0; } } newArr[randomIndex] = arr[i]; } return newArr; } In rare cases, DontSort will fail and actually return a sorted list.
@JaneeshP-p1h6 ай бұрын
Great Video, We need more like this from you
@TheWP1205 ай бұрын
9:59 In verbose, radix sort has a big Oh of the product of the number of numbers in the largest number and the sum of the number of numbers and the base of the largest number.
@chloej16112 ай бұрын
Great video! I still don't understand shell sort though.
@joebazooks5 ай бұрын
i feel like improvement to the visuals couldve made this a lot more easier to understand
@HARI-gm5qz7 ай бұрын
best video compact and easy to understand
@CodingWithLewis7 ай бұрын
Glad you think so!
@ItsD3vil6 ай бұрын
HOLD UP. what the F! why your views are so low I remember each of your videos has over like 1M view??
@CodingWithLewis6 ай бұрын
Haha none of my videos have over 1M views!
@ItsD3vil6 ай бұрын
@@CodingWithLewis My man I wish you all best in the world you really working hard on your videos!💛👏
@jlio20036 ай бұрын
yeah right!? I also remember his videos has over 1M views damn thats crazy 5K on such a well-done video like this, youtube algo is wild
@CodingWithLewis6 ай бұрын
@@jlio2003 hey! If you guys like it that’s all that matters :)
@ahmadentertainmentshorts42226 ай бұрын
Imagine! If we get the complete DSA list from this guy 🙄
@amiosarker15765 ай бұрын
Personally as an intellectual I prefer bogo sort
@_hepl7 ай бұрын
YAAY NEW VID! 🎉
@CodingWithLewis7 ай бұрын
Told ya!
@_hepl7 ай бұрын
@@CodingWithLewis When we will get an Discord community server, also are you going to teach your child how to write own chatgpt.
@niktwaznyy32826 ай бұрын
It would be perfect if you provide code for those kind of algorithms
@automateTec4 ай бұрын
I thought bubble sort was a pom pom gun that points at a lower pigeonhole when the pom pom is heavy, and the upper pigeon holes when the pom pom is light.
@salamundi7 ай бұрын
Bogo sort stays unmatched
@AI_mod3 ай бұрын
I am going through python documentation it still uses tim sort in 3.12. can you share any documents showing python using other sorting (power sort) in 3.12 ?
@balijosu2 ай бұрын
1:11 quadratic, not exponential
@SaltiemcFattee18 күн бұрын
How do you turn the stuff from the code into one of those cool things with the noise and so that it shows the sorting
@md.mahbubanamtanim90815 ай бұрын
Bro is him.....
@asmet_27016 ай бұрын
Hi I wanna add an e-commerce store app for my portfolio. I wonder which react stack is solid for it in 2024. Can someone suggest something? As a back I would prefer Firebase, also for styling scss+mui but need recommendations about state manager and other technologies and tools. Thanks!
@alejrandom65925 ай бұрын
2:25 "exponentially"?
@KnightlyCoding21 күн бұрын
You didn't show the sorting graphic for Counting sort or Radix sort. Not necessarily necessary, but I think it would be both hilarious and helpful to see the poor performance of both of those algorithms illustrated 🤣
@Innovate_Empires7 ай бұрын
I inspired by you
@CodingWithLewis7 ай бұрын
:D
@aixizu7 ай бұрын
At 8:24 is shell sort O(n log n) or O(n2)
@ryoojiz7 ай бұрын
lewis are you ok you look like you don't want to live anymore in the thumbnail 😥😥
@CodingWithLewis7 ай бұрын
The algorithms are getting to me
@mrjutt99626 ай бұрын
What is bucket sort
@domesticcadiz6 ай бұрын
Should’ve done BOGO sort and shown a visual for that! 😂
@napoleon12897 ай бұрын
Here from discord
@CodingWithLewis7 ай бұрын
That fast
@napoleon12896 ай бұрын
@@CodingWithLewis you send it out for a reason
@BobChess6 ай бұрын
True programmers use BOGO sort. Remember kids, Gamblers quit before hitting a jackpoint.
@Pythonist_017 ай бұрын
all these algorithms for sorting numbers!!!!!!!!!!!!!!
@CodingWithLewis7 ай бұрын
We have to do it somehow!
@GamemodePC5 ай бұрын
i still cant understand counting sort
@yash115218 күн бұрын
0:14 bubble sort most popular AND easy. uhhhh. like serously ppl. who whoo, WHOOOO says bubble sort is easier than selection sort?
@kingki19536 ай бұрын
Where is the Bogo sort?
@CodingWithLewis6 ай бұрын
Got another video coming :)
@MamaruSishagn7 ай бұрын
the first man to watch😎
@Cinarbayramic2 күн бұрын
Im here to sort polygons
@bar10jim9 күн бұрын
Ever hears of an odd-even transposition sort?
@MiguelGarcia-kr5bm3 ай бұрын
Ticket to ride :D
@fearlessforward6112 ай бұрын
what about search algorithms like this video made it
@Silquey6 ай бұрын
goat
@yash115218 күн бұрын
1:14 exponetial. hmm... really?
@asagiai49656 ай бұрын
Wait real quicksort don't use new created list. It just use the same list. AFAIK
@not_estains5 ай бұрын
the sound from the beginning of this video is from kzbin.info/www/bejne/oYG1cmONZtB4eck
@Saliman-vr3 ай бұрын
kzbin.info/www/bejne/oYG1cmONZtB4ecksi=BG8WVl4R_kBzZd6l 0:20 kinda looks similar to the thumbnail🤔🤔🤔🤔🤔
@clark48133 ай бұрын
Gott es ist so traurig wenn ich jeden einzelnen verstehe.