Big O Notation

Ace your homework & exams now with Quizwiz!

What are the three rules/principles for calculating Big O Notation run time complexity?

1. Drop the Constants 2. Drop the less significant terms 3. Big O calculates the "worst case" scenario.

What are the three major components of Big O Notation?

1. how quickly the runtime grows—It's hard to pin down the exact runtime of an algorithm. It depends on the speed of the processor, what else the computer is running, etc. So instead of talking about the runtime directly, we use big O notation to talk about how quickly the runtime grows. 2. relative to the input—If we were measuring our runtime directly, we could express our speed in seconds. Since we're measuring how quickly our runtime grows, we need to express our speed in terms of...something else. With Big O notation, we use the size of the input, which we call "n." So we can say things like the runtime grows "on the order of the size of the input" (O(n)) or "on the order of the square of the size of the input" (O(n^2)O(n2)). 3. as the input gets arbitrarily large—Our algorithm may have steps that seem expensive when n is small but are eclipsed eventually by other steps as n gets huge. For big O analysis, we care most about the stuff that grows fastest as the input grows, because everything else is quickly eclipsed as n gets very large. (If you know what an asymptote is, you might see why "big O analysis" is sometimes called "asymptotic analysis.")

What are some flaws with Big O Notation Analysis?

Big O analysis is awesome except when it's not You should make a habit of thinking about the time and space complexity of algorithms as you design them. Before long this'll become second nature, allowing you to see optimizations and potential performance issues right away. Asymptotic analysis is a powerful tool, but wield it wisely. Big O ignores constants, but sometimes the constants matter. If we have a script that takes 5 hours to run, an optimization that divides the runtime by 5 might not affect big O, but it still saves you 4 hours of waiting. Beware of premature optimization. Sometimes optimizing time or space negatively impacts readability or coding time. For a young startup it might be more important to write code that's easy to ship quickly or easy to understand later, even if this means it's less time and space efficient than it could be. But that doesn't mean startups don't care about big O analysis. A great engineer (startup or otherwise) knows how to strike the right balance between runtime, space, implementation time, maintainability, and readability. You should develop the skill to see time and space optimizations, as well as the wisdom to judge if those optimizations are worthwhile.

What is Big O Notation?

Big O notation is the language we use for talking about how long an algorithm takes to run. It's how we compare the efficiency of different approaches to a problem. With big O notation we express the runtime in terms of how quickly it grows relative to the input, as the input gets arbitrarily large.

What is "Drop the less significant terms" rule in Big O Notation?

Drop the less significant term states that we only care about the higher order term because the lower order term is insignificant as input size grows. For Example: function printAllNumbersThenAllPairSums(numbers) { console.log('these are the numbers:'); numbers.forEach(number => { console.log(number); }); console.log('and these are their sums:'); numbers.forEach(firstNumber => { numbers.forEach(secondNumber => { console.log(firstNumber + secondNumber); }); }); } Here our runtime is O(n + n^2)O(n^2), which we just call O(n^2). Even if it was O(n^2/2 + 100n), it would still be O(n^2). Similarly: O(n^3 + 50n^2 + 10000) is O(n^3) O((n + 30) * (n + 5)) is O(n^2) Again, we can get away with this because the less significant terms quickly become, well, less significant as n gets big.

What is the Big O Notation of the following function? function printAllPossibleOrderedPairs(items) { items.forEach(firstItem => { items.forEach(secondItem => { console.log(firstItem, secondItem); }); }); }

Here we're nesting two loops. If our array has n items, our outer loop runs n times and our inner loop runs n times for each iteration of the outer loop, giving us n^2 total prints. Thus this function runs in O(n^2) time (or "quadratic time"). If the array has 10 items, we have to print 100 times. If it has 1,000 items, we have to print 1,000,000 times.

What is the significance of N in Big O Notation?

N could be the actual input, or the size of the input Both of these functions have O(n)O(n) runtime, even though one takes an integer as its input and the other takes an array: For Example: function sayHiNTimes(n) { for (let i = 0; i < n; i++) { console.log('hi'); } } function printAllItems(items) { items.forEach(item => { console.log(item); }); } So sometimes n is an actual number that's an input to our function, and other times n is the number of items in an input array (or an input map, or an input object, etc.).

What is "Worst Case" principle in Big O Notation?

Often this "worst case" stipulation is implied. But sometimes you can impress your interviewer by saying it explicitly. Sometimes the worst case runtime is significantly worse than the best case runtime: function contains(haystack, needle) { // Does the haystack contain the needle? for (let i = 0; i < haystack.length; i++) { if (haystack[i] === needle) { return true; } } return false; } Here we might have 100 items in our haystack, but the first item might be the needle, in which case we would return in just 1 iteration of our loop. In general we'd say this is O(n)O(n) runtime and the "worst case" part would be implied. But to be more specific we could say this is worst case O(n)O(n) and best case O(1)O(1) runtime. For some algorithms we can also make rigorous statements about the "average case" runtime.

What is the Big O Notation of the following function? function printFirstItem(items) { console.log(items[0]); }

This function runs in O(1)O(1) time (or "constant time") relative to its input. The input array could be 1 item or 1,000 items, but this function would still just require one "step."

What is the Big O Notation of the following function? function printAllItems(items) { items.forEach(item => { console.log(item); }); }

This function runs in O(n) time (or "linear time"), where n is the number of items in the array. If the array has 10 items, we have to print 10 times. If it has 1,000 items, we have to print 1,000 times.

What is the "Space Complexity" of the following Code? function sayHiNTimes(n) { for (let i = 0; i < n; i++) { console.log('hi'); } }

This function takes O(1) space (we use a fixed number of variables)

What is the "Space Complexity" of the following Code? function arrayOfHiNTimes(n) { const hiArray = []; for (let i = 0; i < n; i++) { hiArray[i] = 'hi'; } return hiArray; }

This function takes O(n) space (the size of hiArray scales with the size of the input)

What is "Drop the Constants" rule in Big O Notation?

This is why big O notation rules. When you're calculating the big O complexity of something, you just throw out the constants. So like: function printAllItemsTwice(items) { items.forEach(item => { console.log(item); }); // Once more, with feeling items.forEach(item => { console.log(item); }); } This is O(2n), which we just call O(n). functionprintFirstItemThenFirstHalfThenSayHi100Times (items) { console.log(items[0]); const middleIndex = Math.floor(items.length / 2); let index = 0; while (index < middleIndex) { console.log(items[index]); index++; } for (let i = 0; i < 100; i++) { console.log('hi'); } } This is O(1 + n/2 + 100), which we just call O(n). Why can we get away with this? Remember, for big O notation we're looking at what happens as n gets arbitrarily large. As n gets really big, adding 100 or dividing by 2 has a decreasingly significant effect.

What is the "Space Complexity" of the following Code? function getLargestItem(items) { let largest = -Number.MAX_VALUE; items.forEach(item => { if (item > largest) { largest = item; } }); return largest; }

Usually when we talk about space complexity, we're talking about additional space, so we don't include space taken up by the inputs. For example, this function takes constant space even though the input has nn items

What is the "Space Complexity" in Big O Notation?

We want to sometimes optimize for using less memory instead of (or in addition to) using less time. Talking about memory cost (or "space complexity") is very similar to talking about time cost. We simply look at the total size (relative to the size of the input) of any new variables we're allocating. Sometimes there's a tradeoff between saving time and saving space, so you have to decide which one you're optimizing for.


Related study sets

California Real Estate Chapter 7

View Set

US History Exam Semester 1 (final)

View Set

GS ENVS 302 CH 12 Climate Change

View Set

Communication Module 5 Test Review

View Set

APES - Unit 1 Flashcards (ID: B)

View Set

Network Performance and Recovery (Chapter 11)

View Set