Man I really wish you would bring this series back for other algo techniques, you are my fav python instructor on YT
@MyLoweLife3 жыл бұрын
You explained this like I'm 5 years old and thank you bc it makes perfect sense now 😭🙌🏾
@sechvnnull15242 жыл бұрын
You are amazing! I just started my Data Structures and Algorithms course, and I almost had a heart attack as we covered both linear and binary search algorithms and now have to do math problem for the quiz. Both (0)logn and theta problems. But the most important thing is to understand the logic and what the code is doing. You're doing an awesome job at explaining this!! Thank you.
@nonserviam242 жыл бұрын
For anyone wondering. This is a recursive solution. a = [1,2,3,4,5,6] def binarySearch(value, low, high, list): if low value: return binarySearch(value, low, middle-1, list) #here we need to check the upper half as the value is bigger than midpoint elif list[middle] < value: return binarySearch(value,middle+1, high, list) else: return f"Value {value} is not in the list!" print(binarySearch(6, 0, len(a),a))
@hb5165 Жыл бұрын
I'm cramming for my first face-to-face technical interview in 2 weeks and I have to say that I wish I found your channel sooner. Thank you for your effort in making these videos.
@swarooprajpurohit110 Жыл бұрын
How did your interview go?
@bedi8049 Жыл бұрын
@@swarooprajpurohit110 bro did not get hired
@osvaldogarcia61545 жыл бұрын
Thanks a lot for this videos man, they are so simple, but they explain everything in perfect detail
@teen_python_go99473 жыл бұрын
Binary Search Implementation (I tried before seeing your approach): def binary_search(seq, val): print(f"Base Array: {seq}") seq.sort() print(f"Sorted array: {seq}") midpoint = len(seq)//2 while seq[midpoint] != val: if val > seq[midpoint]: midpoint = midpoint + len(seq[midpoint+1:])//2 elif val < seq[midpoint]: midpoint = len(seq[:midpoint]) return f"value is at {midpoint} index in {seq}"
@in-thegarden2 жыл бұрын
Thanks for the tutorials Derrick they are so easy to understand and well explained. I’m self learning Java and Python for the past three months and your videos are very helpful. Good Teacher.
@jimrakel4184 жыл бұрын
Thank you for your videos. I came across your algorithm series this morning and spent the day watching all 5 videos and learning from your examples. Now I can use them to make my own Python library of tips & tricks to use when I program. Keep up the good work!
@kockgunner Жыл бұрын
For beginners like me, make sure that the while loop has a
@ahyungrocks55098 ай бұрын
Excellent tutorial. Love the algorithm explanation at the end to re-iterate our understanding.
@msms32604 жыл бұрын
You are sooooo young and smart. I feel so inadequate in regard to thinking capacity 😭. But your videos are amazing, please don’t stop!
@toby7094 жыл бұрын
When I studying this using the below list : sequence_a = [1,2,4,5,6,7,8,9,12,14,16,17,22] list_a = 1 it will return 0 as sequence, which looks a bit strange to me...so I add +1 to it, haha print(binary_search(sequence_a, list_a)+1) Btw, it's a good video! Thanks for teaching me!
@pieters2864 жыл бұрын
yes, the list is zero refrenced in code, thus one needs to add 1 again when printing out to natural world.
@redachikhaoui12093 жыл бұрын
and also for midpint can be (start + end )//2
@salvationprayerfellowship88995 жыл бұрын
Thanks alot man for the tutorial very well explained you deserve more subs
@param83782 жыл бұрын
This solution is better than lead code selection
@zisistsatsos25094 жыл бұрын
I think this code is a little simpler: key=a #the_number_you_are_searching first=0 last=len(L)-1 pos=-1 #the_position_of_the_number while first
@murtazahonarpoor42524 жыл бұрын
You are doing a great job man. The videos are short, well explained and very easy to understand. Please keep posting.
@solomontaiwoabbaly4 жыл бұрын
Thank you very much for this amazing video. I've been searching everywhere for this but there are too complex. But this one is...Schway!!😀
@elijahlair2 жыл бұрын
Really loved this. Simple and precise. Thanks
@rajkumar.alagappan5 жыл бұрын
Why we should use the formula midpoint= (start+end-start)/2 instead of (start +end)/2 ?
@CodeWithDerrick5 жыл бұрын
I think your solution would work fine too! I haven't tested so don't hold me too it though, haha. In my head I was just adding half of the remaining positions to the current beginning position to get the midpoint is why I wrote it that way
@rajkumar.alagappan5 жыл бұрын
@@CodeWithDerrick ☺️ thank you
@igorverevkin77094 жыл бұрын
It does work indeed since your begin_index and end_index get new values on every iteration :)
@GG-le8bq2 жыл бұрын
Hey Derrick , this is the first time I came across your video and it is so articulate and lucid . I am already subscribing and looking forward to learn more from you .
@ilyosbekkarshiboyev71342 жыл бұрын
Thanks a lot for this videos man
@marioandresheviacavieres19232 жыл бұрын
Thanks a lot for the series!! I watch it all
@hasnainali92953 жыл бұрын
Absolute clutch, as a comp sci student, you explained better than the teacher (no offence to teacher lol)
@philmelancon9152 ай бұрын
Should this work with a sequence containing duplicate values? It isn't in my testing but I could just be wrong. Make item_a = 22 and perform the binary search on this sequence: sequence_a = [2,4,5,6,7,8,8,9,11,13,14,17,22,22,777]. It should return 12, but returns 13 (the index of the second instance of 22 in the sequence). Is this just a limitation that should be accounted for?
@mikesdailygaming2 ай бұрын
def binary_search(arr, target): low, high = 0, len(arr) - 1 while low
@juliannafotheringham71012 жыл бұрын
Beautiful videos you angel, so clear and simple.Thank you!!!
@ssengendonazil69852 жыл бұрын
i do node.js and php but u made it clear for as weel thanx
@eZaFJDUBB11 ай бұрын
The program as is returns None every time unless you purposely choose a midpoint equal to the value you're searching for
@MrSatz994 жыл бұрын
Thanks amazing it was! Please upload video on linear search also!
@JesusAlfredoHernandezOrozco Жыл бұрын
Great video and explanation!
@TrueHumanNature744 жыл бұрын
def search(list,target): for item in list: if list[item]==target: print(i) list=[4,3,6,8,7,9] target=7 search(list,target) 4 #print the index where item belongs
@klejdisbeshi87684 жыл бұрын
I think it should be if item == target... And this is not binary search so your comment is not valid.
@UtkarshaB4 жыл бұрын
keep uploading ...Nicely,Thoroughly explained...
@kerolosgeorge-l5k Жыл бұрын
Derrick ,I just completed a python course ,however it is a basic one i am still finding myself rigid while coding how do they I can develop myself to a level where i can write codes smoothly?? Thanks
@gedtoon64513 ай бұрын
Your algorithm is not quite right. if sequence_a = [2, 4, 5, 6, 9, 9, 9, 10, 12, 13, 14] and item_a = 9 it will return index 5. It is generally accepted that binary search should find the first occurrence, which is 4. Can you correct this problem?
@raulsanchez47163 жыл бұрын
Super clear explanation! Thank you so much.
@defaltcm4 жыл бұрын
Cannot tell if he is smiling or being held at gun point with those facial expressions lol. At times he seems forced other times he generally seems interested.
@CodeWithDerrick4 жыл бұрын
😂😂
@demrieanntinds4 жыл бұрын
hello Derrick, I have a question. What if in the sorted list there is a duplicated number/ numbers? Thanks a lot! :)
@bolawolesegun42482 жыл бұрын
it will pick the first index of the located value
@wajdy26202 жыл бұрын
im confused by the 7th line. Isnt beginning index always going to equal the same so then it would just cancel out? How could beginning index be 2 different values in the same line?
@AreeshaSiddiqui-zy7js3 жыл бұрын
please do a video on data structures and linked list too
@yilu32192 жыл бұрын
why the midpoint is begin_index + ? why just second part ( end -begin)//2 only?
@emorgan86985 жыл бұрын
Hey Derrick. Really enjoy your videos and I think is brilliant the animations you are now adding to the beginning of your videos to explain the theory. I'm trying to create a complexity matrix to determine how complex a project is based on user's input. Was thinking on using radio buttons or something similar for the user to select the input and then generate the result based on the selections. Any ideas on how best to accomplish this (it would need to be a web app)? I am new to Python. Do you think Django would work?
@CodeWithDerrick5 жыл бұрын
Hey Eduardo! Thank you for the kind words! Sorry for the slow reply on this one. Django would definitely be able to handle it for you if you wanted to go down that route. You could collect the input using an HTML form, pass that to your view in django, do your calculations within your view, and then return it back to an HTML page. Django does take a bit of set up in the beginning, but once you get it running, there isn't really a limit to what you can do with it. If you decide to go down that route let me know if you get stuck anywhere - happy to make some tutorial videos around website creation!
@emorgan86985 жыл бұрын
@@CodeWithDerrick thanks for your reply. if you could do some videos related to this idea that would be great. I'm not a developer so it can get tricky to get this up and running. I have some experience with RPGIV but I now work as Business Analyst. My idea is quite simple. have a table with rows and columns and allow users to select the options using radio buttons and show the risk level at the end. for both the radio buttons and the risk level I'm planning on using Bootstrap. in the meantime I'll keep trying and see how far I can get. keep up the good work and thanks for the help.
@mustafaa.46903 жыл бұрын
Who else feels embarrassed? 🤣🤣 Note: Really thank you for this content. It helped me a lot.
@vlogiiidawidaaa74084 жыл бұрын
Is there going to be any more videos on algorithms? Great work!
@shaharyarahmed57773 жыл бұрын
i noticed a issue if you pass [1, 2, 3, 4, 5] as the sequence the while loop goes infinity
@6abriel94 жыл бұрын
Thanks man! excellent explanation, greetings from Argentina
@soseofficial39233 жыл бұрын
very useful brother. thanks a lot.
@Rahdmi4 жыл бұрын
I can't figure out how to use binary search and user input. I want to use binary search to look at a list of names the user typed in , ask the user for a name to search and display if the name was there or not. I doubt you'll see this but I thought I would put it out there. Can anyone help me?
@meteerol80824 жыл бұрын
@Mister Blo0 as he did, user could input the target as an argument in function
@zakirhossain74134 жыл бұрын
gracefully done!
@diegososa52804 жыл бұрын
Thank you so much. Huge help. Subscribed
@josepha84152 жыл бұрын
Great video
@augusto.carmona4 жыл бұрын
great videos man!
@jpchato3 жыл бұрын
Awesome, Thank you!
@saiyan55928 ай бұрын
Bro pls post more videos on this datas and the algorithms pls ........................ 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@brainworkout70352 жыл бұрын
Is it wrong if I find the mid_point like: midpoint = (begin_index + end_index) // 2
@madushani68442 жыл бұрын
Please upload the vedios for Merge sort, shell sort & heap sort as well.🥺❤️
@selimtanrverdi96393 жыл бұрын
Thanks a lot. Very great explanation.
@Corrado493 жыл бұрын
thanks, really help me out!
@adji974 жыл бұрын
thanks man this video helps alot
@agesilausii77594 жыл бұрын
Thanks very good Explanation. Why not put middle = (begin + end)//2 ? Looks simpler. :)
@Change_Test4 жыл бұрын
I stumbled on the answer to this in another video. For certain sizes of input arrays, begin+end can create an integer overflow in some programming languages, so adding the extra steps prevents integer overflow errors. I don't understand what that means, but apparently that's the reason for this format.
@agesilausii77594 жыл бұрын
paperfish113 really? Thats interesting. I think overflow is when a number is too big for computer memory to handle.
@lucasm42992 жыл бұрын
@@agesilausii7759 Yes and while (begin + end) may be overflow l, (end-begin) won’t be overflow
@elisasee75384 жыл бұрын
Hey for line 7 why can't it just be begin+end//2
@Sun481003 жыл бұрын
Thanks, this is helpful.
@priyanshudatta8845 Жыл бұрын
you should cast as jack frost. ♥
@BiblicalArchaeologyAR3 жыл бұрын
Thank you!!
@nupurjhankar67452 жыл бұрын
can you do merge sort video
@kelvin63352 жыл бұрын
Great vid! tysm!
@RookiwiАй бұрын
Thanks man
@marclim93043 жыл бұрын
my number is off by one position what should i do?
@loop7210 Жыл бұрын
program code not working properly.IS the code wrong guys ?
@TheGorilla584 жыл бұрын
It's something I was using by 1981 (When I started with CP/M and PDP11 and VAX sistems). What You are showing it'a the startig procedure of a binary search. What about duplicates? It was already used in 1957 (Peterson, William Wesley (1957). "Addressing for random-access storage". IBM Journal of Research and Development.). Finally, I think U studied well. Pls Read also "Moore School Lectures" from the University of Pennsylvania's Moore School It's an old 1946 Compendium. Here is the link en.wikipedia.org/wiki/Moore_School_Lectures
@tonymartin37383 жыл бұрын
How do you perform 1 through 300
@thishuman Жыл бұрын
Thank you :)
@storm_rising4 жыл бұрын
nrb approves
@nikhilparakh32513 жыл бұрын
Amazing!!!
@temik263 жыл бұрын
Perfect!
@davlatbekkobiljonov911 Жыл бұрын
thank you
@tareqmahmud39023 жыл бұрын
Umm, why am I getting TLE's? Time limit expired errors. :)
@SEE.ME.N0.M0RE3 жыл бұрын
Thank you so much Derrick, I've been rewatching the playlist almost daily. I have a question: I've tested this on an unsorted list and it did find the index of the element I'm searching for, does this mean that this can work on an unsorted list as well? Many thanks!
@fareselamine81153 жыл бұрын
Binary assumes you already have a sorted list. If you know the list to start with is unsorted, run it through a sorting algorithm first.
@kda_-uh3vj4 жыл бұрын
2:52 hahaha bruh that glitch in your face, sorry but I can't help but laugh but laugh it off. Btw really good video, it helped me a lot ;)
@rebornpixelsproduction3 жыл бұрын
While coders where too busy focusing on the code, you was busy focusing on him yeh :)
@lackyyyy30983 жыл бұрын
@@rebornpixelsproduction u should focus on english yeh :)
@mariobezuidenhoudt66954 жыл бұрын
midpoint = (begin_index + end_index)//2
@pritam13663 жыл бұрын
which ide is used in this video
@shiili76995 жыл бұрын
excuse me, why should "begin" and "end" be assigned to "mid +1" and "mid-1" ? istead of just "mid"
@huzaim.224 жыл бұрын
Beacause of index in position Hence +1 means after the mid and -1 is before the middle point
@shaharrefaelshoshany94423 жыл бұрын
wowww, super!!
@rinku42404 жыл бұрын
Hey Derrick Sherrill, your video is amazing. But I would request you to please don't speak so fast during the animation or during the explanation.
@armisol007 ай бұрын
TY BRO
@Adam-gp3ij3 жыл бұрын
Awesome
@jingzhuang41684 жыл бұрын
Thumbs up!
@shahzan5255 жыл бұрын
Make video on merge sort...... Really need it.....
@abdulrameez1515 жыл бұрын
Is the code same for visual code for python on windows
@MegaKash7864 жыл бұрын
Abdul Rameez yes
@avalon43523 жыл бұрын
ofc. Visual Code is just an IDE. there is no difference in codes
@znpkami3 жыл бұрын
neat!
@yunkel5 жыл бұрын
👍
@storm_rising4 жыл бұрын
do you play Minecraft?
@saviaggarwal81354 жыл бұрын
not working in pycharm. Help me!!
@Corrado493 жыл бұрын
check the indentations
@MelanoBeridze-f8i7 күн бұрын
btw his eyes
@rajivgardas29202 жыл бұрын
I love you
@Pmills94 жыл бұрын
I don't get what is the point of this? Why not just return the index of the target number? Wouldn't it be the same either way? This just seems like an overly complicated way to do that. Not bashing you or anything but I just don't see the point of all this extra code
@stilgarfifrawi71553 жыл бұрын
What does it feel like to be born with plastic surgery?
@tarzan81104 жыл бұрын
I've tested all of the sites for free points and only GameCrook works.
@agsrf64794 жыл бұрын
If I told you that I am lying to you right now, would I be saying the truth?