Big O notation Flashcards

1
Q

How can you measure efficiency

A

By the total number of executions of assignments

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

What is the time complexity of a linear search

A

O(n)

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

What is the time complexity of a binary search

A

O(log(n))

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

What is the time complexity of a bubble sort

A

O(n^2)

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

What is the time complexity of a merge sort

A

O(nlog(n))

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

What is a tractable problem

A

A problem that can be solved in a polynomial time or better

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

What does intractable mean

A

The problem cannot be solved within a reasonable amount of time. An example being O(2^n) or O(n!)

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

What is a heuristic approach

A

Technique that guides the algorithm into good choices.
It sacrifices accuracy in exchange for a solution within a reasonable time

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