Linear & Binary Search Code | Big O Notation
HTML-код
- Опубликовано: 17 ноя 2024
- Theory for Linear and Binary Search | Big 0 Notation : • Big O Notation, Time C...
Check out our courses:
Enterprise Java Spring Microservices: go.telusko.com...
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : go.telusko.com...
Coupon: TELUSKO20 (20% Discount)
For More Queries WhatsApp or Call on : +919008963671
Udemy Courses:
Spring: go.telusko.com...
Java:- go.telusko.com...
Java Spring:- go.telusko.com...
Java For Programmers:- go.telusko.com...
Python : go.telusko.com...
Git : go.telusko.com...
Docker : go.telusko.com...
website : courses.telusk...
Instagram : / navinreddyofficial
Linkedin : / navinreddy20
TELUSKO Android App : bit.ly/TeluskoApp
Discord : / discord
More Learning :
Java :- bit.ly/3x6rr0N
Python :- bit.ly/3GRc7JX
Django :- bit.ly/3MmoJK6
JavaScript :- bit.ly/3tiAlHo
Node JS :- bit.ly/3GT4liq
Rest Api :-bit.ly/3MjhZwt
Servlet :- bit.ly/3Q7eA7k
Spring Framework :- bit.ly/3xi7buh
Design Patterns in Java :- bit.ly/3MocXiq
Docker :- bit.ly/3xjWzLA
Blockchain Tutorial :- bit.ly/3NSbOkc
Corda Tutorial:- bit.ly/3thbUKa
Hyperledger Fabric :- bit.ly/38RZCRB
NoSQL Tutorial :- bit.ly/3aJpRuc
Mysql Tutorial :- bit.ly/3thpr4L
Data Structures using Java :- bit.ly/3MuJa7S
Git Tutorial :- bit.ly/3NXyCPu
Donation:
PayPal Id : navinreddy20
www.instamojo....
Ultimately explaining big(o) ♥️🔥🔥
Thank you for your explanation on finding the Time complexity Sir... this is fitting inside my head without any doubts... Keep uploading the videos daily
Thank you very much for your DSA tutorial sir 🙏🙏
Awesome.. you make everything easy to understand sir. Thank you
Thank you so much sir for your DSA tutorials. Sir please upload the remaining DSA tutorials also. It will be really helpful to learn the remaining lectures. Thank you sir.
Ex-ordinary teaching sir👏
Very good explanation Sir, can you please upload videos on remaining topics in DSA.
Please continue the series 🙏
one of the best explanations i've ever seen
i have chosen you today to be my best tutor
waiting for complete playlist
hi @Telusko thanks for good explanation i would be greet if you could make PYTHON instead of JAVA
Sir please Upload the remaining DSA videos it helps me to understand the concepts sir.
Good Explanation Sir..😎😎
Thank you ❤
Very good explanations sir. I have a doubt "your Binary search algorithm will work only if the list elements are in ascending order, Is my understanding correct?"
Yes that's correct!!
For binary search algorithm to be implemented, we need to have the array sorted.
If not sorted then we cannot implement binary search.
I also have the same doubt. What should we do or which algorithm we have to use if the elements are not in ascending order?
Very nice sir... But to understand java for other language students is little bit complicated
Python implementation video is on the way
choose hard way not easy way, who run over easy way they will never get high level success in life. Remember that
@@Teluskojava is enough do more topics other than the language seperation
Thank you Soo much Sir❤❤
Plz When are you Continue the Series you tell that you will continue this in the 1 week of sep?
series will resume from tomorrow, recording already started
@@Telusko Thank you Sir Love From Pakistan
Thank you Sir.
didn't understand binary search because you were not defining the pointer after changing the position. I had to follow the other resources to understand this concept.
Can you take fastapi classes?
Amazing
but what about the fact that lists are not put in ascending order?
Binary search is only for sorted collection?
Thanks
Best
How you did the MAGIC when all elements in array is zero, still its showing number of steps.
Nice
no more videos on dsa ??
dsa bnao depth m 400q
can you please provide a source code..... please sir
❤❤❤
public class Program
{
public static void Main()
{
int[] arr = new int[] { 1,2,4,5,8,13,17,18,21};
int a = 17;
int count=0;
//Console.WriteLine(arr.Length);
for(int i=0;i