Asymptotic Notations 101: Big O, Big Omega, & Theta (Asymptotic Analysis Bootcamp)

  Рет қаралды 316,849

Back To Back SWE

Back To Back SWE

5 жыл бұрын

Free 5-Day Mini-Course: backtobackswe.com
Try Our Full Platform: backtobackswe.com/pricing
📹 Intuitive Video Explanations
🏃 Run Code As You Learn
💾 Save Progress
❓New Unseen Questions
🔎 Get All Solutions
Great Resource: cathyatseneca.gitbooks.io/dat...
Big O Cheat Sheet: bigocheatsheet.com
Today we will initiate a discussion on something that I have lied to you about for a very long time. This will be as simple as possible.
We will not only consider the informal definition but rather also look at the mathematical understandings behind why we call these asymptotic “bounds”.
Again, we care about this because the true colors of an algorithm can only be seen in the asymptotic nature of runtime and space.
So imagine this, we have these components:
A function T(n) which is the actual number of comparisons, swaps...just...resources an algorithm needs in terms of time or space. It is a function of n. When n changes, T(n) changes.
Our job is to classify behaviour.
A bound O( f(n) ) is the function that we choose to apply for the specific bounding.
The definitions, an example:
"T(n) is O(f(n))" iff for some constants c and n0, T(n) less than or equal to c * f(n) for all n greater than or equal to n0
In English...this means...we can say that f(n) is a fundamental function that can upper bound T(n)'s value for all n going on forever.
We have an infinite choice for what c is.
Our constant does not change behavior, it changes "steepness" of the graph.
We are saying that...if I declare f(n) as an upper bound, then I can find a constant c to multiply against f(n) to ALWAYS always always keep T(n) beneath my c * f(n)...T(n) will never beat c * f(n) for infinite n values...hence asymptotic bounding.
If we can't find this c then f(n) fails as an upper bound because it does not satisfy the asymptotic requirement.
So why are constants dropped?
Well...think about what we just did. The injection of the arbitrary c as a multiple onto a base function removes the need for a constant. It adds no meaning to a bound because it is conceptually already a part of the definition of what a bound is.
Big Bounds
Big O: Upper bound on an algorithm's runtime
Theta (Θ): This is a "tight" or "exact" bound. It is a combination of Big
For example:
An algorithm taking Ω(n log n) takes at least n log n time, but has no upper limit.
An algorithm taking Θ(n log n) is far preferential since it takes at least n log n (Ω(n log n)) and no more than n log n (O(n log n)).
Big Omega (Ω): Lower bound on an algorithm's runtime.
Little Bounds
Little o: Upper bound on an algorithm's runtime but the asymptotic runtime cannot equal the upper bound.
There is no little theta (θ).
Little Omega (ω): Lower bound on an algorithm's runtime but the asymptotic runtime cannot equal the lower bound.
If you can't get an exact upper bound, try lower bounding (although it is less useful to be honest).
++++++++++++++++++++++++++++++++++++++++++++++++++
HackerRank: / @hackerrankofficial
Tuschar Roy: / tusharroy2525
GeeksForGeeks: / @geeksforgeeksvideos
Jarvis Johnson: / vsympathyv
Success In Tech: / @successintech
#asymptoticnotations

Пікірлер: 855
@LegacyCS2
@LegacyCS2 Жыл бұрын
I really appreciate how you said at the beginning "Do you understand this? Because I don't, this is too thick for me, but this is the typical introduction you'd get in actual classes". This whole sentence resonated so much with me. Sometimes I cannot grasp those abstract ideas in math, and I just need to have the concepts explained to me like im 5 years old, and your video was able to make me understand this in just 20 minutes, when I've been struggling with this for 3 years. Thank you man, keep it up!
@user-hg4fs2ik5c
@user-hg4fs2ik5c 2 ай бұрын
wanted to comment the exact same thing, HUGE thanks!!!!!
@34521ful
@34521ful 5 жыл бұрын
I had to pause the video to take the time to say this. Your videos are absolutely phenomenal. Keep up the good work man, your channel is 10x better than all the others I see that just tell you "how" to do something but don't go over the "why". Great stuff man, your channel will grow soon enough. Definitely recommending this channel to all my other friends.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
thanks :)
@momofro1819
@momofro1819 4 жыл бұрын
I agree, I haven't seen videos so detailed and easy to understand. Most of the videos on KZfaq don't go this far into the small details that really help beginners build a foundation for their understanding.
@crisjos6167
@crisjos6167 4 жыл бұрын
@@momofro1819 absolutely
@erassylzh5658
@erassylzh5658 4 жыл бұрын
totally agree!
@janjoska2549
@janjoska2549 4 жыл бұрын
@@BackToBackSWE agreed
@suparnobhattacharya6345
@suparnobhattacharya6345 4 жыл бұрын
The day this guy stops making videos we'll be doomed.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hahahaha, that day has not come
@TrendRain
@TrendRain 4 жыл бұрын
@@BackToBackSWE Hope that day never comes.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@TrendRain tru
@susankanjira6098
@susankanjira6098 4 жыл бұрын
Waaay doomed
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@susankanjira6098 hey
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
This is Ben from 5 months in the future. Cool video man.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
This is Ben 1 month after this comment
@IceyBoy47
@IceyBoy47 4 жыл бұрын
@@BackToBackSWE Im doing this right now at university, you have no idea how much i smiled when you said "well this is too much to digest, lets take this line by line" , feels like that is always missing when trying to explain these types of concepts. Sub earned.
@yashjaiswal2335
@yashjaiswal2335 3 жыл бұрын
This is yash a student of IT. And here is a massive thanks for explaining the concepts.
@valentinascharpf3215
@valentinascharpf3215 4 жыл бұрын
I've been "kind of" getting these concepts for years, never quite being able to really get them. But I really understand now. Wow! I cannot believe it. Thank you!!! Some people are meant to be teachers. You are absolutely one of those. I agree with the others: you have a gift.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks, I am but a man
@welcmasher2471
@welcmasher2471 2 жыл бұрын
@@BackToBackSWE A talented and awesome man!
@alkendimacale8047
@alkendimacale8047 4 жыл бұрын
omg wtf. I actually understood this holy shit. You're amazing dude, wish you were my prof hahahahha
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice yo, u educamated now
@abrantapia
@abrantapia 4 жыл бұрын
I rarely leave comments but thank you for explaining this like a normal person. I got overwhelmed with my textbook like it was purposely trying to prevent me from learning. You guys are phenomenal.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye, bless da internet
@hands4516
@hands4516 5 жыл бұрын
This is my first comment I've ever written on KZfaq that I can recall. There is no better opportunity than to give you feedback as my first post. I want to personally applaud you, not just for your excellent teaching (you a BEAST!), but the effort you take to thoroughly respond to all of your subscribers. That speaks volumes. This is what stood out to me aside from your incredible ability to convey these complex topics in an understandable way. You won my subscription. What sets you apart from many other channels is how humble you are. You don't proclaim to be born as Knuth's twin brother or anything like that. You shared with us how you personally struggled with the same concepts that we now are an audience to. This quality makes you tangible. It draws people closer to you: "Hey! He was once where I was. I'm not alone. I can overcome these obstacles like he did!". On that note, keep up the remarkable work. You have a gift and people out there in cyberspace are watching.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
aw, haha, thanks. I hope I can help as many cyberspace people as possible in the coming years.
@diegocastro7434
@diegocastro7434 3 жыл бұрын
Hey man just wanted to thank you. Reviewing big O for my algorithms class and I am happy to say this is hands down the best explanation for this out there!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
great
@rohitkarnati8604
@rohitkarnati8604 3 жыл бұрын
This man literally called me out haha, I was scrolling to look at the comments and got off task and he said "you still with me" 4:57 and I was like yes sir.
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
lmaoooo
@suparnaprasad8187
@suparnaprasad8187 5 ай бұрын
Absolutely amazing. Learnt more in 23 minutes than 1.5 hours of class. Looking forward to more such content!!
@ShaliniNegi24
@ShaliniNegi24 4 жыл бұрын
Finallyyyyyyyy understood the topic! Thank you!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@michaelkeen9166
@michaelkeen9166 2 жыл бұрын
Fantastic video! I'm having to brush up on algorithms for grad school and this explanation is far superior than anything I was taught in my undergrad algorithms class. Thank you very much!
@lindsayhopper9582
@lindsayhopper9582 3 жыл бұрын
I cannot begin to explain how helpful this explanation was. Thank you so much for posting this!
@flarepaints5516
@flarepaints5516 3 жыл бұрын
Absolutely love your videos! I've been studying this for a week and struggling, but after watching your video it all makes sense 🙌🏿
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
great to hear
@nononono-lm8id
@nononono-lm8id 2 жыл бұрын
all I ask....please DONT ever stop making videos man...you are helping a lot of people with these vids
@BackToBackSWE
@BackToBackSWE 2 жыл бұрын
yep
@fico9565
@fico9565 4 жыл бұрын
dude for real this has to be one of the best youtube videos this year, thank you so much bro
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hahahahaha, really?....r 👏e 👏 a 👏 l 👏l 👏y?
@af_125
@af_125 4 жыл бұрын
I have paused at 15 minutes to say - thank you! This video helped me understand this topic very nicely. I thought I was good at algorithms and data structures and time complexity stuff last year until they introduced this from a mathematical standpoint this year. This really helped.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
great
@samanthasavoy5303
@samanthasavoy5303 Жыл бұрын
I don't normally comment on youtube, but I had to say that you are a phenomenal teacher. Cannot thank you enough for how you explained this concept!!!
@nojoodal-ghamdi5579
@nojoodal-ghamdi5579 3 жыл бұрын
just a huge and great effort to explain the lesson, I really appreciate every single minute you spend making this video.. thank you so much the idea is getting clearer and clearer
@henokwoldemichael1749
@henokwoldemichael1749 4 жыл бұрын
I love you. Thank you, seriously bro you're an amazing person for taking the time to do these videos. No professor has ever explained it like you did
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye
@adrianwheeler1936
@adrianwheeler1936 5 жыл бұрын
Wow, this is one of the best videos I have seen on this topic, you really break it down and speak in clear terms. Thank you so much! Keep up the great work.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
sure
@merzoukismahane8420
@merzoukismahane8420 2 жыл бұрын
i just needed to open my youtube acount and stop the video for a while to tell you that you made it easy and great ,and you're just the best one who explained that very well .thank you
@alyssarodriguez5891
@alyssarodriguez5891 2 жыл бұрын
I am taking an algorithms class right now and this video helped me understand this topic SO much better. Thank you!!!
@matthewrenze5922
@matthewrenze5922 4 жыл бұрын
You're a hero! This is much more understandable than my algorithms class!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thx
@cesarmtz1992
@cesarmtz1992 3 жыл бұрын
I’m so glad I decided to watch some coding videos before bed. This is going to be tomorrow’s lecture and you are explaining it so well!
@thevgancheetah
@thevgancheetah 5 жыл бұрын
Dude, this is as clear as one can explain!! I feel like I understand everything now! Wow!! Great great great job!!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@saloni8818
@saloni8818 4 жыл бұрын
I'm writing this in the time of quarantine from my home and it's the first ever video I saw from your channel and I absolutely love this!!!! I've been trying to figure out asymptotic notations since a long time and I finally got it for the first time ever. TYSM for your hard work
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye, may u flourish
@SuperBiggates
@SuperBiggates 2 жыл бұрын
I swear this video explained everything so well. Thank you for the amazing content and have a good day
@MrCodigoFuente
@MrCodigoFuente 3 жыл бұрын
3 mins into the video was enough to make me subscribe. This guy knows his stuff!
@deferkings
@deferkings 3 жыл бұрын
Dude, your videos are literally saving my life, Thank you sosososo much !
@jayys7745
@jayys7745 3 жыл бұрын
Thank you so much ! I didn't really understand this last semester and now i finally get it !!! Explain so much better than the textbook
@pfg222
@pfg222 Жыл бұрын
just want to say thank you for your clear explanation on Asymptotic Bounding. Been having trouble with it and this video explained it way better than any other video I have seen and as well better than the professor I have.
@juanong4709
@juanong4709 4 жыл бұрын
Amazingly clear explanation. Literally felt the need to write a comment to thank you for making this!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thank you for watching, you are loved
@collengura
@collengura 2 жыл бұрын
Apart from Abdul Bari's asymptotic series, I have not come across any such well explained asymptotic analysis. You do it so well that it sticks in the mind forever. All my grey areas concerning Big O concept have been cleared. No need to claim anything. Well done; and keep it up!
@filmbotreviews
@filmbotreviews 2 жыл бұрын
Excellent video! Best explanation with great examples!
@onemoretube
@onemoretube 2 жыл бұрын
You are really great at explaining complex CS stuff. This clip should be shown in every Algorithms Analysis course. Thank you so much!
@tedprice1
@tedprice1 4 жыл бұрын
Thanks for breaking this down. You flipped the way I was thinking about big-O and now it makes sense with crystal clarity. Thank you very much.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@loganwillans4035
@loganwillans4035 3 жыл бұрын
Great job!! Very clear explanation.
@ev3rything491
@ev3rything491 3 жыл бұрын
Amazing! Im a teacher trying to get his head around analytic number theory and felt like he needed to refresh his memory on Big-O notation. Gotta say, this one is great. It made it all much more intuitive. Now, whenever I see O(...) Im just thinking "O(...) = behaviour of the function under consideration". Thanks!
@brianperez5000
@brianperez5000 3 жыл бұрын
This was legitimately the most helpful video I've ever seen. When my professor tried explaining this concept, it sounded like gibberish for 45 minutes. After watching this video, I completely understand the concept. Thank you so much for your help!
@lonerinthecorner1839
@lonerinthecorner1839 Жыл бұрын
You have no idea how this is helping me as a college student. I wish i can thank you in person but this is the best that I can do. Thank you so much for the video. I really appreciate it my man.
@AyaNori
@AyaNori 3 жыл бұрын
Thank you for your clear and thorough communication!! This was so easy to understand
@Strangebeing007
@Strangebeing007 4 жыл бұрын
Dude, you are absolutely precise and amazing. Thanks man.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@alandangg
@alandangg 3 жыл бұрын
Thanks man, I was about to drop my discrete math class. Watching your videos makes me actually understand the material rather than googling all the answers and not understanding them.
@pagr319
@pagr319 4 жыл бұрын
Wow, you are really a genius in explaining this stuff. I can't tell you how happy I am right now that I found your channel
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
i'm pretty normal and thx
@KDTechverse
@KDTechverse 4 жыл бұрын
You're going in the right direction brother and so no one can actually stop this channel from becoming the most extensively used resource for all different levels of at sw engineers !
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks lol
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Have you tried the platform yet? Check out the free DSA Mini-Course 👉backtobackswe.com/five-day Table of Contents: Introducing Asymptotic Bounding 0:00 - 0:46 Big O: The Asymptotic Upper Bound 0:46 - 1:05 Introducing Our Way of Thinking 1:05 - 1:40 What Does Asymptotic Mean? 1:40 - 2:39 Formally Defining Big O 2:39 - 5:35 This Is What I Mean By "Bounding" 5:35 - 8:05 This Bound Is Not Tight 8:05 - 8:55 Trying A Different Bound 8:55 - 12:06 Trying An Aggressive Bound 12:06 - 14:59 WHY DO WE DROP CONSTANTS? 14:59 - 16:11 Big Omega (Ω): The Lower Bound 16:11 - 18:40 Theta (Θ): The Exact Bound 18:40 - 21:37 Little o & Little Omega (ω) 21:37 - 22:08 Wrap Up 22:08 - 22:56 Errors: I misspoke sometimes and reversed sentences...oh well, the point got across at least I hope. There is no code for this video. Hey.
@rataozinhoster
@rataozinhoster 3 жыл бұрын
tks man, didn't understand fckn anything, but im seeing this video more times through this semstr.
@solomonelisha3543
@solomonelisha3543 2 жыл бұрын
Instablaster
@nagarjunprasad
@nagarjunprasad 5 жыл бұрын
Just Wow!!! Really awesome work mate. I recently found your channel and it's become a habit now to search your playlist and find if you have a video on any doubt I have. Keep up the awesome work!
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
hahaha thanks
@mustafa_masoud
@mustafa_masoud 5 жыл бұрын
man!, i have been taking an online course in Algorithms, blv me lots of sources and videos that i did watch trying to get the meaning of different bounds, only your video which made me totally get it clearly and in a very smart easy way,, i can't thank you enough, keep up the good work.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@BRUCE59468
@BRUCE59468 4 жыл бұрын
Fantastic video! You explained something clearly that my professor could not.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@pavelsavelev2560
@pavelsavelev2560 2 жыл бұрын
love your energy man !
@tomh6010
@tomh6010 3 жыл бұрын
You just paraphrased 5 weeks of my university course and I understand this waaay more than I did previously. Every credit.
@robertculley8447
@robertculley8447 3 жыл бұрын
Just discovered your channel and I am so happy I did and grateful for you making these! Im a newbie still and these videos clear a lot of things up for me. Thanks!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
Nice, thanks, and great
@TheAceInfinity
@TheAceInfinity 2 жыл бұрын
You are a great teacher, please continue with these videos! Subbed
@Kirmeins
@Kirmeins 4 жыл бұрын
NOW We're talking! All those notations simply confused the heck out of me! Thanks for clearing that up! Now I know what they're all about! So helpful
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
lol nice and sure
@Dheineck5
@Dheineck5 4 жыл бұрын
This is by far the best explanation I've seen on this topic.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hey
@jaesen737
@jaesen737 3 жыл бұрын
Thank you SO much. I was struggling with this until I came across this video, you explain things so well.
@suddathgautam5944
@suddathgautam5944 3 жыл бұрын
Good stuff...cleared all my doubts
@bassam-e-mansour
@bassam-e-mansour 3 жыл бұрын
Amazing thnx man EASY & CLEAR to understand 👌🏻
@TheZombyKillr
@TheZombyKillr 4 жыл бұрын
Thank you so much for explaining this. As a graduate student in my 5th year of CS, I have only had bad luck with professors. No one would ever use examples or simplistic breakdowns to explain the concept, as you did in this video. You state the problem, simplify it, solve it, and work back up to the complex level we started at, in a way that makes it easy to understand, and very easy to follow. My assignments finally seem clear to me now. You've earned a sub :) Have a good week!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
Nice!
@Endarz
@Endarz 10 ай бұрын
Brilliant, absolutely flawless professing.
@MrTrevor0567
@MrTrevor0567 4 жыл бұрын
First video of yours I’ve watched. This explanation made SO MUCH MORE SENSE than my professor. You’re awesome man!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thx
@garrettw9756
@garrettw9756 6 ай бұрын
Really really REALLY thankful that I stumbled onto this video. Your explanations are crystal clear and I can honestly say that I've never understood this subject matter as well as I do now having watched this video. I cannot thank you enough!
@wennie2939
@wennie2939 4 жыл бұрын
The best video on this topic I've seen from KZfaq! Keep it up, plz!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@davisward3144
@davisward3144 4 жыл бұрын
Super helpful. Your way of explaining things is so clear. Keep up the channel!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ok
@BeALeaderAndAnInspir
@BeALeaderAndAnInspir 4 жыл бұрын
Hey man, thanks a lot. Finally, I got this after like 3 hours when I found your vid here. Haha... Keep doing the great work. You are a great inspiration.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@MuhidAbid14point75
@MuhidAbid14point75 3 жыл бұрын
This was sooo helpful!!
@poseidensea7730
@poseidensea7730 5 жыл бұрын
Your Videos are great man. It really helped me with the Exam we took today.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Everyone eats. Eat up.
@vdzxl6749
@vdzxl6749 2 жыл бұрын
Pretty late here ,but I had a subject on this topic this year where I was really confused on the lectures, and this really cleared things up for me, especially I am the type who learns from clear examples and this just gave me what I need, thanks lots.
@marcosricardoFPV
@marcosricardoFPV Жыл бұрын
The best explanation of this subject I've seen 👏👏
@dianna5619
@dianna5619 Жыл бұрын
You are helping me pass my classes
@roflcoptersaurustron
@roflcoptersaurustron 2 жыл бұрын
best and clearest explanation i've found for this concept! thank you so much!
@Rumiiiiiiiiiiiiiiiiiiii
@Rumiiiiiiiiiiiiiiiiiiii 3 жыл бұрын
Literally you helped me a lot!
@aquilalance4730
@aquilalance4730 3 жыл бұрын
you speak very clearly, I understood everything perfectly thanks
@marshalwelgama5407
@marshalwelgama5407 3 жыл бұрын
Thank you so much for this video. I have been pulling my hair out trying to learn this thing, i almost accepted the fate that i might fail this subject again, but you have actually given me some hope that i can finish this task! thank you.. i actually understand it now im glad i invested the 24 minutes to watch this. It makes so much sense
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
You can pass and do whatever u want
@ken4179
@ken4179 3 жыл бұрын
I dont know how i just found this channel. It's awesome
@rithikdutt1332
@rithikdutt1332 3 жыл бұрын
Never understood it to this level! Coool video!
@danielbarajas4625
@danielbarajas4625 4 жыл бұрын
Bless up man. I have an exam tomorrow and I definitely feel 100% confident about this topic.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@StoneColdProfessor
@StoneColdProfessor 4 жыл бұрын
This is the best description of this topic I've ever seen. Awesome! Thanks for the killer content.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@darkteam5515
@darkteam5515 2 жыл бұрын
WOW! I spent 6+ hours watching different videos trying to figure out Big O and your video is the only one that makes sense to me. Thank you sooooo much
@BackToBackSWE
@BackToBackSWE Жыл бұрын
Happy to help
@princekrampah8440
@princekrampah8440 3 жыл бұрын
This channel is under rated sadly. Keep up the good work.
@nicholasvitale6088
@nicholasvitale6088 3 жыл бұрын
You are very good at explaining stuff
@ricardoramirez2945
@ricardoramirez2945 3 жыл бұрын
Thank you so much, I was having a lot of trouble understanding this!!!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
sure
@yyyyyyyyyyy1988
@yyyyyyyyyyy1988 Жыл бұрын
Just owesome, thanks alot man.
@lucasprioli2003
@lucasprioli2003 3 жыл бұрын
Very good! Keep doing a good work.
@jjathan6939
@jjathan6939 2 жыл бұрын
This is so damn good. It's so simple to understand while providing the deeper details of the topic. Thank you so much for this!
@ladyanadelia
@ladyanadelia 5 жыл бұрын
Thank you for creating these videos. This one helped explain better than anything that I have learned in my class.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
sure, enjoy and live a happy life :)
@tommyshaw2420
@tommyshaw2420 4 жыл бұрын
So glad I found this channel
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
I'm blessed
@seanfly5554
@seanfly5554 2 жыл бұрын
Thank you so much! I've been struggling with understanding this for the past 2 days, now I clearly get it thanks to this one video.
@BackToBackSWE
@BackToBackSWE 2 жыл бұрын
Thank you, glad you liked it 😀 Do check out backtobackswe.com/platform/content and please recommend us to your family and friends 😀
@jaihohoho
@jaihohoho 4 жыл бұрын
This deserves more views! I have literally watched dozens of videos about Big O and other asymptotic notations and I still couldnt grasp them until I’ve seen this! Great work! Also, your’e very attractive #daddy
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice, thx
@dragofand
@dragofand 4 жыл бұрын
That part where you talk about the function you get describing a behavior was very, very useful! Thank you! I was really missing that from the video lectures i was watching.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@chrisogonas
@chrisogonas 3 жыл бұрын
Well illustrated! Thanks
@vladimirsolovyov4674
@vladimirsolovyov4674 2 жыл бұрын
Great explanation! Thank you a lot!!!
@LorneGiles
@LorneGiles 3 жыл бұрын
I don't normally leave comments, but I wanted to take the time to say thank you. I have to say this is far clearer, more illustrative, and more understanding of the difficulty faced in digesting this topic than either my lecturer or the prescribed textbook (Shaffer) could muster. Keep up the good work as it was excellent and now favourited.
@zuzuz18
@zuzuz18 4 жыл бұрын
I never ever write youtube comments, but I just have to say that you are amazing. You explain concepts sooooo well. I would not be surviving in Data Structures 1 without you. Thank you Back to Back SWE!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
You will survive. And flourish. The internets are here for u.
@trestenpool9045
@trestenpool9045 3 жыл бұрын
Best video I found on this topic. Thanks very much sir.
@Jimming854
@Jimming854 2 жыл бұрын
Answered all of my questions, thank you for doing this!
@BosssHog
@BosssHog 9 ай бұрын
YOU ARE A LEGEND BRO! Thank you so much!
@jonathanhadiprasetyanto521
@jonathanhadiprasetyanto521 3 жыл бұрын
You are a life-saver, thanks!
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 14 МЛН
MEU IRMÃO FICOU FAMOSO
00:52
Matheus Kriwat
Рет қаралды 42 МЛН
ROCK PAPER SCISSOR! (55 MLN SUBS!) feat @PANDAGIRLOFFICIAL #shorts
00:31
1.8.1 Asymptotic Notations Big Oh - Omega - Theta #1
15:46
Abdul Bari
Рет қаралды 1,8 МЛН
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 421 М.
Why Is Merge Sort O(n * log(n))? The Really Really Long Answer.
36:50
Back To Back SWE
Рет қаралды 113 М.
How to Prove or Disprove Big-O - Introduction to Computer Science
18:35
Master Theorem Visually Explained
12:13
Lars Quentin
Рет қаралды 29 М.
What Is Big O Notation?
17:45
Reducible
Рет қаралды 311 М.
Best mobile of all time💥🗿 [Troll Face]
0:24
Special SHNTY 2.0
Рет қаралды 2 МЛН
Мой инст: denkiselef. Как забрать телефон через экран.
0:54
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 4,8 МЛН