Algorithms and Complexity Flashcards

1
Q

Define an algorithm

A

A finite set of computational steps that transform input into output

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

Why do we use algorithms?

A

Algorithms are effective methods for solving a class of problems

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

What are common properties of algorithms?

A
  1. The inputs to an algorithm must be finite
  2. The inputs to an algorithm represent instances of the problem
  3. An algorithm should produce the correct outcome
  4. An algorithm should terminate
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Give examples of algorithm formats

A

Text, pseudocode, flowcharts, and computer code

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

What makes an algorithm better than another?

A

We evaluate algorithms based on their space and time complexity

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

Define space complexity

A

The amount of memory required by an algorithm to run to completion

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

What are the two types of the memory that is required by an algorithm?

A

The fixed and the variable memory

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

Define the fixed part of memory needed by an algorithm

A

The amount of memory required to store certain data/variables whose size is independent of the input to the algorithm

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

Define the variable part of memory needed by an algorithm

A

The amount of memory required to store variables whose size is dependent on the input to the program

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

Define time complexity

A

The theoretical relationship between the time an algorithm will take to run and the size of its input expressed as a function of the size of the inputs

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

What factors effect runtime?

A

The size of inputs, the organisation of the inputs, the optimal operating temperature and the number of processor cores

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

What case do we consider when evaluating the runtime of an algorithm?

A

The worst case scenario

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

Why is it rare to have an algorithm with the best time and space complexity?

A

Often in decreasing the time or space complexity we increase the other meaning that we either need to work out whether our program should prioritise speed or memory or we need to balance the two equally

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

Why would we not focus on the worst case scenario with regards to runtime?

A

If the worst case scenario is very rare there is little point in considering it in which case we would consider the average case

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

Describe an experimental method of determining the runtime of a program

A

Running the program for a range of inputs and plotting the runtime

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

Why do we rarely use an experimental approach to determine the runtime of a program?

A

You need to implement the algorithm for every input and also ensure that the running conditions are exactly the same for every test

17
Q

What is an alternative methods to determining how long an algorithm will take to run that is not experimental?

A

Operation counting

18
Q

What problem do we face with operation counting?

A

We need to determine what counts as one operation independent of which programming language it is in because there are differences between programming languages

19
Q

What does operation counting mean?

A

Counting how many operations are in an algorithm by tracing it through and working out how many will be executed for different inputs

20
Q

Why do we have different cases when analysing runtime using operation counting?

A

The runtime is not just dependent on the number of operations but also on the organisation of the input

21
Q

What does the notation T(n) mean?

A

The overall program time as a function of n

22
Q

How do we determine the average case for the runtime of a program if we cannot determine the runtime for every instance of inputs?

A

We work out the average number of times an instruction will be executed using the Nth partial sum equation and then use this to determine the average runtime

23
Q

What is the worst case time complexity for a linear search?

A

T(N) = 3N + 3

24
Q

How does a sentinel search work?

A

It checks to see whether the desired element is at the end of the list, if it is then it’s returned, if not then it sets the last item in the list equal to the desired element. This means that you do not have to perform the check to see whether you are out of bounds.

25
Q

What is the worst case time complexity for a sentinel search?

A

T(N) = 2N + 3

26
Q

What is the worst case time complexity for a binary search?

A

T(N) = C1 + C2log(N)

27
Q

What does the growth of functions describe?

A

How the runtime for a function increases as the number of input elements increases

28
Q

What does Big-Ohm represent?

A

The best case time complexity

29
Q

What does Big-O represent?

A

The worst case time complexity

30
Q

What does Big-Theta represent?

A

The average time complexity