Year 1 - Decision Flashcards

1
Q

1.1 How can algorithms be written?

A

Code, flowcharts, or a set of instructions

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

1.1 What can be used to implement an algorithm?

A

A trace table

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

1.2 What does the shape of each box in a flowchart tell you about the function?

A

Oval - Start/End
Rectangle - Instruction
Diamond - Decision

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

1.3 Describe a bubble sort

A

Compare adjacent items in a list:
- If they are in order, leave them
- If they are not in order, swap them
- After the first pass, the last item will be in the correct place
- When a pass is completed with no swaps, the sort is complete

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

1.3 What is the expression for the maximum number of comparisons in a bubble sort?

A

(n(n -1))/2

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

1.4 Describe quick sort

A

Select a pivot and split the items into 2 sub-lists:
- One contains the items less than the pivot
- The other contains the items greater than the pivot
- Select further pivots from within each sub-list and repeat the process

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

1.5 What are the 3 bin packing algorithms? Describe them

A

First-fit: Items in order listed, place each item in the first available bin

First-fit descending: Sort into descending order, then apply the first-fit algorithm

Full-bin: Use inspection to select items that will fill a bin first. Remaining items packed with first-fit

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

1.5 What are the advantages and disadvantages of first-fit?

A

+ve - Quick to implement

-ve - Unlikely to lead to an optimal solution

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

1.5 What are the advantages and disadvantages of first-fit descending?

A

+ve - Usually an optimal solution, easy to implement

-ve - May not find optimal solution, takes a long time

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

1.5 What are the advantages and disadvantages of full-bin?

A

+ve - Usually an optimal solution

-ve - Difficult especially when numbers are large/awkward

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

1.6 What is the order of an algorithm?

A

If an algorithm has order f(n), then increasing the size of the problem from n to m will increase the run time by a factor of approximately f(m)/f(n)

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

1.6 What order does bubble sort have? Explain how you get this

A

A list has n items, the first pass will require (n-1) comparisons, a second pass will require (n-2) comparisons, in the worse case this continues, the total number of comparisons would be:
1+2+3+…+(n-3)+(n-2)+(n-1) = (1/2)(n-1)n = (1/2)n^2 - (1/2)n

Since this is a quadratic expression, bubble sort is taken to have quadratic order

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

1.6 What are the rules for linear, quadratic, and cubic order?

A

If the size of a problem is increased by some factor k then:
- an algorithm of linear order will take approximately k times as long to complete

  • an algorithm of quadratic order will take approximately k^2 times as long to complete
  • an algorithm of quadratic order will take approximately k^3 times as long to complete
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

2 What is a graph?

A

A finite number of vertices (or nodes) connected by edges (or arcs)

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

2 What is a weighted graph? What is it also known as?

A

A graph that has numbers assigned to each edge, also called a network

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

2 What is a tree?

A

A connected graph with no cycle

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

2 What is a subgraph?

A

A graph whose vertices and edges belong to another graph but it is only part of the original

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

2 What is a walk?

A

A route through a graph along edges from one vertex to another

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

2 What is a path?

A

A walk in which no vertex is visited more than once

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

2 What is a trail?

A

A walk in which no edge is visited more than once

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

2 What is a cycle? What is it also known as?

A

A walk in which the end vertex is the same as the starting vertex (also a closed path)

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

2 What is a Hamiltonian Cycle?

A

A cycle in which all vertices are visited

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

2 What does it mean if a graph is connected?

A

If all the vertices are joined to the graph

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

2 What is a loop?

A

An edge that starts and finishes at the same vertex

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

2 What is a simple graph?

A

A graph with no loops and where there is at most one edge connecting any pairs of vertices

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

2 What is a digraph?

A

A graph where edges have a direction

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

2 What is a spanning tree?

A

A subgraph which includes all original vertices that is also a tree

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

2 What is the expression for the number of edges in a spanning tree for a connected graph of n vertices?

A

n-1

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

2 What is a complete graph?

A

Every vertex is connected to each other by a single edge (think k1, k2, k3, …)

30
Q

2 What is the expression for the number of Hamiltonian cycles in a complete graph with n vertices?

A

((n-1)!)/2

31
Q

2 What is an isomorphic graph?

A

A pair of graphs which shows the same information but are drawn differently

32
Q

2 What is an adjacency matrix?

A

A table describing the number of arcs joining the corresponding vertices

33
Q

2 What is a distance matrix?

A

A table in which the entries represent the weight of each arc, not the number of arcs

34
Q

2 What is the degree/valency/order of a vertex?

A

The number of edges coming out of the vertex

35
Q

2 What is the Handshake Lemma?

A

In any undirected graph, the sum of the degrees of vertices is equal to 2x the number of edges - therefore the number of odd vertices must be even

36
Q

3.1-3.2 What do Kruskal and Prim’s algorithms do?

A

They find the minimum spanning tree (MST) of a network

37
Q

3.1 Describe Kruskal’s algorithm

A
  1. Sort the arcs in ascending order of weight
  2. Select the arc of least weight to start the tree
  3. Consider the next arc of least weight:
    i) If it would form a cycle, reject it
    ii) If it would not form a cycle, add it to the tree (if arcs are of equal weight consider each in turn)
  4. Repeat (3) until all vertices are connected
38
Q

3.2 Describe Prim’s algorithm

A
  1. Select any vertex to start the tree from (often given to you in the question)
  2. Choose an arc of least weight connecting to the starting vertex that joins a vertex not currently in the tree (if there are a choice of equal arcs then choose randomly)
  3. Repeat (2) until all vertices are connected
39
Q

3.3 Describe how you can apply Prim’s algorithm to a distance matrix

A
  1. Choose any vertex to start the tree
  2. Cross out the row containing that vertex
  3. Number the column in the matrix for the chosen vertex
  4. Ring the lowest remaining entry in the column (if equal, choose randomly)
  5. The ringed entry becomes the next arc added to the tree
  6. Repeat 2, 3, 4, & 5 until all rows are deleted
40
Q

3.3 What order is Prim’s algorithm?

41
Q

3.4 What is Dijkstra’s algorithm used for?

A

Dijkstra’s (‘Dike-stra’) algorithm is used to find the shortest path through a network

42
Q

3.4 Describe Dijkstra’s algorithm

A
  1. Above every vertex there is a vertex label, order of labelling, final value, and working values
  2. Label the starting vertex with a 1 and a final value of 0
  3. Record a working value at every vertex that is connected to the vertex chosen
  4. If this value is smaller than the current working value, cross the old value out
  5. Look at the working values at all vertices without final labels, select the smallest working value and make it the final label
  6. Repeat until the destination receives a final label
43
Q

3.4 How do you find the shortest path between 2 points on a network?

A

Work backwards, whichever arc equals the next vertex when you subtract the arc value is the correct path

44
Q

4.1 What is an Eulerian graph?

A

A network that contains a trail that includes every edge and starts and finishes at the same vertex. Any connected graph whose vertices are all even is Eulerian.

45
Q

4.1 What is a semi-Eulerian graph?

A

A network that contains a trail that includes every edge and starts and finishes at the same vertex. Any connected graph with two odd vertices is semi-Eulerian (one odd vertex is the start and the other is the end of the trail)

46
Q

4.2 What does the route inspection algorithm do?

A

Finds the length of the shortest route in a network that transverses every arc at least once, and returns to its starting point

47
Q

4.2 If a network is Eulerian, what can you say about the length of its shortest route that transverses every arc?

A

length of the shortest route = total weight of the network

48
Q

4.2 If a network is semi-Eulerian, what can you say about the length of its shortest route that transverses every arc?

A

length of the shortest route = total weight of the network plus the length of the shortest path between the two odd vertices

49
Q

4.2 Describe how to implement the route inspection algorithm

A
  • Identify any odd vertices
  • Consider all possible pairings of these pairings
  • Select the complete pairing that has the least sum
  • Add a repeat of the arcs indicated by this pairing to the network
50
Q

6.1 How do you formulate a linear programming problem?

A
  • Define the decision variables (x, y, z, etc)
  • State the objective (maximise/minimise, together with an algebraic expression called the objective function)
  • Write the constraints as inequalities
51
Q

6.2 What is the name of the region of a graph that satisfies all the constraints of a linear programming problem? How should you label this?

A

Feasible Region (generally marked with an ‘R’ and everywhere not in the region is shaded)

52
Q

6.3 How do you solve a linear programming problem after drawing the feasible region?

A

Locate the optimal point with objective method or ruler method.

Obj. method: Find the coords of each vertex of the feasible region and select the vertex that gives the optimal value of the objective function

Ruler method: Sketch parallel lines with the same gradient as the objective function, for a max. point look for the last point covered by the lines as it leaves the feasible region, for a min. point look for the first point covered by the lines as it enters the feasible region

53
Q

6.4 How do you find the optimal vertex of a linear programming problem if the solution does not have integer values?

A
  • Consider the four integer coords in a square around the optimal vertex
  • See which point obeys all the constraints
  • If there are multiple, select the point that has the more optimal solution for the objective function
54
Q

8.1 What is a precedence table?

A

A table which shows which activities must be completed before others are started

55
Q

8.1 How do you draw an arc network for a critical path analysis problem?

A
  • Activities represented by arcs & completion of activities shown as nodes
  • Each arc labelled with an activity letter, convention is straight lines for arcs
  • Nodes are numbered starting from 0 for the first node which is also called the source node
  • Number each node as it is added to the network
  • Final node is the sink node
56
Q

8.2 What is a dummy activity?

A
  • An activity that has no time or cost
  • Its purpose is to show dependencies between activities
57
Q

8.2 What is special about the relationship between two activities in a critical path analysis problem?

A
  • Every activity must be uniquely represented
  • There can be at most one activity between any two nodes
58
Q

8.3 What is duration of an activity? How is it denoted?

A
  • How long it takes to complete
  • Denoted in brackets as the ‘weight’ of each arc
59
Q

8.3 What is an early event time? What is a late event time?

A
  • The earliest time that an activity can start/finish
  • The latest time that an activity can start/finish
60
Q

8.3 How are early and late event times shown?

A

Nodes are replaced by two boxes: top is the early event time, bottom is the late event time

61
Q

8.3 How do you find the early event time of a node?

A
  • Do a forward pass
  • Whichever activity preceding it takes the longest to finish
  • Think ‘forward high’
62
Q

8.3 How do you find the late event time of a node?

A
  • Do a backward pass
  • Whichever activity after it takes the shortest time to start
  • Think ‘backward low’
63
Q

8.4 What is a critical activity?

A

An activity when any increase in its duration results in an increase in the duration of the whole project

64
Q

8.4 What is a critical path?

A
  • A path from the source node to the sink node which entirely follows critical activities
  • A critical path is the longest path contained in the network
  • An activity connecting two critical events isn’t necessarily a critical activity
65
Q

8.4 How do you identify a critical event node?

A

The early event time is equal to the late event time

66
Q

8.5 What is the float of an activity?

A

The amount of time that its start may be delayed without affecting the duration of the project

67
Q

8.5 How do you calculate the float of an activity?

A

Total float = latest finish time - duration - earliest start time

68
Q

8.5 What is the total float of a critical activity?

69
Q

8.6 What is a Gantt chart? How do you draw one?

A
  • Graphical way of representing possible start and finish time for all activities in a project
  • Critical activities are across the top marked by solid lines
  • Each subsequent activity is marked with solid lines starting at their early event time and spanning their duration
  • An activity’s float is marked on the end with dotted lines
70
Q

8.6 What do these questions mean?
- Determine how many activities MUST be happening at midday on day x
- Determine how many activities MAY be happening at midday on day x

What must you also remember when answering these questions?

A
  • MUST: An activity is definitely happening on the day either because its float is too small or because it is critical
  • MAY: An activity may be happening depending on the length of its float
  • IMPORTANT: If asked how many activities MAY be happening, do not also include those that MUST be happening
  • Also, always consider the fencepost problem when marking the day on the Gantt Chart