Big O Notation, Time Complexity | DSA

  Рет қаралды 70,423

Telusko

Telusko

Күн бұрын

Пікірлер: 50
@malvernmabvira1562
@malvernmabvira1562 Жыл бұрын
Can't be more grateful for this video🙏. Never seen a teacher like this.
@philjoseph3252
@philjoseph3252 11 ай бұрын
You are the single greatest python teacher in the world, even Charles Severance can't teach as well as you. I watched so many videos on Big O but this is literally the first time I ever understood it
@Tweetpreneur
@Tweetpreneur Ай бұрын
Fantastic video, I am learning DSA for the first time and this video made so much sense to me. Thank you
@asalkargauri2445
@asalkargauri2445 Жыл бұрын
thankyou so much sir i cant even express how you helped me by uploding this video i request you please complete dsa series thankyou somuch i owe you!!!!keep doing
@ajinzrathod
@ajinzrathod 6 ай бұрын
Keep up the good work! Please keep the DSA series on ongoing and also explain Time and Space Complexity in each of them. Your work is just AWESOME
@sohampaul1
@sohampaul1 8 ай бұрын
I have query in Binary search. As you said "if Target is less than the Mid value, then after Mid values of the array have no importance [8:37]". Why we count Mid value here for next loop ? We already know, Mid value is greater than Target value. It should be "if Target is less than the Mid value, then from Mid values of the array have no importance".
@radhakrishnabelievers
@radhakrishnabelievers 3 ай бұрын
yes, u said correct, if the target is less the we move towards mid-1 will be the end point ,and if the target is greater then we move mid +1 will be the start point.
@ghosal_mainak
@ghosal_mainak Жыл бұрын
Hi Naveen If you can cover Dynamic Programming..it would be great help
@abhishekm.e3668
@abhishekm.e3668 Ай бұрын
Good explanation but how we can take advantage with Big O Notation in case of unsorted arrays?
@sanjaykushwah8271
@sanjaykushwah8271 Жыл бұрын
Thank you for the video; I learned a lot. However, based on your explanation in the video, I believe the O(n) graph should be positioned in the middle, not below.
@kalideb-y3y
@kalideb-y3y 25 күн бұрын
how do we do binarySearch if the target we're looking for is not a number?
@sankyaaaaa__
@sankyaaaaa__ Жыл бұрын
I want to say thank you for starting this dsa series....i was waiting for you to start dsa..the way you explain gets fit into the mind...
@AdarshaCoder
@AdarshaCoder Жыл бұрын
I was waiting for this video... please keep uploading..
@gowthamreddysomala
@gowthamreddysomala Жыл бұрын
Meeru Great Teacher Sir..
@kapiljain7596
@kapiljain7596 Жыл бұрын
Please post more videos like this. I understood the concept of big 0 very clearly
@user-of8kt9no9s
@user-of8kt9no9s 7 ай бұрын
sir even ChatGpt is recommending your channel
@abdallahahmed6022
@abdallahahmed6022 7 ай бұрын
Sir you're the best. Thank you sooo much for your kind support!
@iamdivyaprakash
@iamdivyaprakash Жыл бұрын
Good morning sir ! Are you going cover all DSA topics here ?
@bharathtricks
@bharathtricks Жыл бұрын
Thanks you so much sir it's very helpful ❤❤
@rmpdasilva
@rmpdasilva Жыл бұрын
Really nice explanation!
@VivekSarmaKommanamanchi
@VivekSarmaKommanamanchi 11 ай бұрын
excellent video sir , we want more videos like these
@sourishgupta3340
@sourishgupta3340 Жыл бұрын
More videos on algorithms and dynamic programming please, and help us to make better projects
@psudhakarreddy6548
@psudhakarreddy6548 28 күн бұрын
Best videi.Thank you
@runnysarfo4869
@runnysarfo4869 Жыл бұрын
can we use a binary search without sorting the array
@vickysit23
@vickysit23 2 ай бұрын
It will not work
@rockstarkavya7431
@rockstarkavya7431 3 ай бұрын
In binary search the numbers are always in ascending order
@shaiksohel0
@shaiksohel0 5 күн бұрын
thank you
@chuabenjamin
@chuabenjamin Жыл бұрын
Sir you are a hero
@praveenmail2him
@praveenmail2him 9 ай бұрын
Brilliant explanation!
@RajeshYadav-fz3ds
@RajeshYadav-fz3ds Жыл бұрын
Big thanks to Navin Annaya ❤ maja aayega
@programmerdesire
@programmerdesire Жыл бұрын
Amazing explanation ❤❤
@vigilante191
@vigilante191 4 ай бұрын
thank you for existing
@Tom-sp3gy
@Tom-sp3gy Ай бұрын
I love you sir !
@sarasalhi8
@sarasalhi8 Жыл бұрын
thank you so much navin
@bahurudeen7
@bahurudeen7 Жыл бұрын
Great Explanation sir❤🎉
@zr0724
@zr0724 Жыл бұрын
sir thank you , please don,t ever skip this series or i will sucide 😩
@rameshmc1784
@rameshmc1784 2 ай бұрын
God mode sir ❤
@bharathtricks
@bharathtricks Жыл бұрын
Super sir❤❤❤❤
@prashlovessamosa
@prashlovessamosa Жыл бұрын
Good evening sir.
@rajeshpakkala
@rajeshpakkala Жыл бұрын
Please start paid course or give full list of dsa sir
@touheedurrehman
@touheedurrehman Жыл бұрын
Thank you sir❤
@GopiGopi-tl4vt
@GopiGopi-tl4vt Жыл бұрын
Helpfull 🏅
@rajivsharma7742
@rajivsharma7742 Жыл бұрын
Quite helpful 😇😇😇😇😇😇😇😇😇😇😇😇
@gopichanti1977
@gopichanti1977 7 ай бұрын
In the following pseudocode, let A be an array of n positive integers, x be a positive integer number, start be an index, p be a list of integers, and result be a list of lists. a) Explain what the Mystery function does. b) Find an upper bound for its time complexity (T). Hint: You need to write T(n,x) as a recurrence relation and solve it by expanding it. function func(A, x): A.sort() result = [] Mystery(A, x, 0, [], result) return result function Mystery(A, x, start, p, result): if x == 0: result.append(p) return if x < 0: return for i from start to n - 1: Mystery(A, x - A[i], i + 1, p + [A[i]], result) anyone please help me with this ?
@OMKAR-lj8ci
@OMKAR-lj8ci 10 ай бұрын
excellent
@mahidhar6247
@mahidhar6247 10 ай бұрын
nice
@abdeldjalillouhichi1749
@abdeldjalillouhichi1749 Жыл бұрын
♥♥
@mayuridhokane5493
@mayuridhokane5493 Жыл бұрын
👍
@codegreat8201
@codegreat8201 Жыл бұрын
Second Comment
@AdarshaCoder
@AdarshaCoder Жыл бұрын
Now i feel like why this video ended so fast 🥲
Linear & Binary Search Code | Big O Notation
19:31
Telusko
Рет қаралды 31 М.
1.8.1 Asymptotic Notations Big Oh - Omega - Theta #1
15:46
Abdul Bari
Рет қаралды 1,9 МЛН
So Cute 🥰
00:17
dednahype
Рет қаралды 58 МЛН
Time and Space Complexity - Strivers A2Z DSA Course
35:16
take U forward
Рет қаралды 607 М.
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 472 М.
Array Data Structure
7:58
Telusko
Рет қаралды 32 М.
Time and Space Complexity COMPLETE Tutorial - What is Big O?
2:28:24
Kunal Kushwaha
Рет қаралды 657 М.
Top 7 Algorithms for Coding Interviews Explained SIMPLY
21:22
Codebagel
Рет қаралды 384 М.