time complexity Flashcards

1
Q

Q: List common time complexities from most to least efficient

A

A: O(1) < O(log n) < O(n) < O(n log n) < O(n²) < O(2ⁿ) < O(n!)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Q12: What does O(1) space complexity mean?

A

A12: O(1) space represents constant space complexity. The algorithm uses the same amount of memory regardless of input size. Examples include iterative algorithms that use a fixed number of variables or in-place algorithms that modify the input directly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Q14: How does recursion affect space complexity?

A

A14: Recursion typically adds to space complexity due to the call stack. Each recursive call adds a new frame to the stack, storing local variables and the return address. For a recursion depth of n, this contributes O(n) to the space complexity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Q11: What is auxiliary space?

A

A11: Auxiliary space is the extra space used by an algorithm during its execution, not including the space taken by the inputs. Total space complexity is the sum of auxiliary space and input space.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Q10: What does O(2ⁿ) time complexity mean?

A

A10: O(2ⁿ) represents exponential time complexity. The algorithm’s runtime doubles with each addition to the input size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Q9: What does O(n²) time complexity mean?

A

A9: O(n²) represents quadratic time complexity. The algorithm’s runtime grows with the square of the input size. Examples include simple sorting algorithms like bubble sort, insertion sort, and selection sort, or comparing every element with every other element in a collection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Q8: What does O(n log n) time complexity mean?

A

A8: O(n log n) represents linearithmic time complexity. Common in efficient sorting algorithms like mergesort, heapsort, and quicksort (average case). It’s typically seen in algorithms that break the problem into smaller parts, solve them independently, and combine the results.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Q5: What does O(1) time complexity mean?

A

A5: O(1) represents constant time complexity. The algorithm’s runtime remains the same regardless of the input size. Examples include accessing an array element by index or inserting at the beginning of a linked list.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Q7: What does O(n) time complexity mean?

A

A7: O(n) represents linear time complexity. The algorithm’s runtime grows linearly with the input size. Examples include traversing an array or a linked list, or a simple linear search.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Q7: What does O(n) time complexity mean?

A

A7: O(n) represents linear time complexity. The algorithm’s runtime grows linearly with the input size. Examples include traversing an array or a linked list, or a simple linear search.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Q4: What is the difference between Big O, Big Omega (Ω), and Big Theta (Θ)?

A

Big O (O): Upper bound - algorithm performs at most this well
Big Omega (Ω): Lower bound - algorithm performs at least this well
Big Theta (Θ): Tight bound - algorithm’s performance is bounded both above and below

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Q6: What does O(log n) time complexity mean?

A

A6: O(log n) represents logarithmic time complexity. The algorithm’s runtime grows logarithmically as the input size increases. Each step eliminates a large portion of the input. Examples include binary search and operations on balanced binary search trees.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Q1: What is time complexity?

A

A1: Time complexity is a measure of the amount of computational time taken by an algorithm to run as a function of the input size. It describes how the runtime of an algorithm grows as the input size increases.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Q3: What is Big O notation?

A

A3: Big O notation is a mathematical notation that describes the upper bound of an algorithm’s time or space complexity in the worst-case scenario. It provides an asymptotic upper limit, representing how the algorithm scales with input size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Q2: What is space complexity?

A

A2: Space complexity is a measure of the amount of memory (space) an algorithm needs as a function of the input size. It includes both the space used by the input and the auxiliary space used by the algorithm during execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly